From 33c0894d8240cdf94bf050dbdf391ebbf73e5bfd Mon Sep 17 00:00:00 2001 From: webchick <drupal@webchick.net> Date: Tue, 6 Jan 2015 11:28:04 -0800 Subject: [PATCH] Issue #2396657 by Mile23: Clean-up history module test members - ensure property definition and use of camelCase naming convention --- core/modules/history/src/Tests/HistoryTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/modules/history/src/Tests/HistoryTest.php b/core/modules/history/src/Tests/HistoryTest.php index cdbfd6877eb0..74e14427853e 100644 --- a/core/modules/history/src/Tests/HistoryTest.php +++ b/core/modules/history/src/Tests/HistoryTest.php @@ -36,7 +36,7 @@ class HistoryTest extends WebTestBase { * * @var object */ - protected $test_node; + protected $testNode; protected function setUp() { parent::setUp(); @@ -45,7 +45,7 @@ protected function setUp() { $this->user = $this->drupalCreateUser(array('create page content', 'access content')); $this->drupalLogin($this->user); - $this->test_node = $this->drupalCreateNode(array('type' => 'page', 'uid' => $this->user->id())); + $this->testNode = $this->drupalCreateNode(array('type' => 'page', 'uid' => $this->user->id())); } /** @@ -107,7 +107,7 @@ protected function markNodeAsRead($node_id) { * Verifies that the history endpoints work. */ function testHistory() { - $nid = $this->test_node->id(); + $nid = $this->testNode->id(); // Retrieve "last read" timestamp for test node, for the current user. $response = $this->getNodeReadTimestamps(array($nid)); -- GitLab