From 43de9e095973ddbeeed582254da341f5bed69a3b Mon Sep 17 00:00:00 2001
From: xjm <xjm@65776.no-reply.drupal.org>
Date: Wed, 8 Feb 2017 20:54:01 -0600
Subject: [PATCH] Issue #2850170 by aaronbauman, dawehner: Capitalization error
 for assertTRUE()

---
 .../Drupal/Tests/Core/Entity/ContentEntityBaseUnitTest.php      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/tests/Drupal/Tests/Core/Entity/ContentEntityBaseUnitTest.php b/core/tests/Drupal/Tests/Core/Entity/ContentEntityBaseUnitTest.php
index cb7353376c55..38fc3cc5c0c9 100644
--- a/core/tests/Drupal/Tests/Core/Entity/ContentEntityBaseUnitTest.php
+++ b/core/tests/Drupal/Tests/Core/Entity/ContentEntityBaseUnitTest.php
@@ -237,7 +237,7 @@ public function testIsNewRevision() {
     $this->assertFalse($this->entity->isNewRevision());
     $this->assertTrue($this->entity->isNewRevision());
     $this->entity->setNewRevision(TRUE);
-    $this->assertTRUE($this->entity->isNewRevision());
+    $this->assertTrue($this->entity->isNewRevision());
   }
 
   /**
-- 
GitLab