diff -u b/core/modules/tracker/tests/src/Functional/TrackerNodeAccessTest.php b/core/modules/tracker/tests/src/Functional/TrackerNodeAccessTest.php --- b/core/modules/tracker/tests/src/Functional/TrackerNodeAccessTest.php +++ b/core/modules/tracker/tests/src/Functional/TrackerNodeAccessTest.php @@ -87,15 +87,15 @@ $this->drupalLogin($access_user); - // Create some nodes. - $private_node = $this->drupalCreateNode([ - 'title' => 'Private node test', - 'private' => TRUE, - ]); - $public_node = $this->drupalCreateNode([ - 'title' => 'Public node test', - 'private' => FALSE, - ]); + // Create some nodes. + $private_node = $this->drupalCreateNode([ + 'title' => 'Private node test', + 'private' => TRUE, + ]); + $public_node = $this->drupalCreateNode([ + 'title' => 'Public node test', + 'private' => FALSE, + ]); // User with access should see both nodes created. $this->drupalGet('activity');