diff --git a/core/modules/node/src/Tests/NodeAccessJoinTest.php b/core/modules/node/src/Tests/NodeAccessJoinTest.php index dbd269d..d1786f5 100644 --- a/core/modules/node/src/Tests/NodeAccessJoinTest.php +++ b/core/modules/node/src/Tests/NodeAccessJoinTest.php @@ -158,7 +158,7 @@ function testNodeAccessJoin() { $this->assertText('Page with private article', "Node with owner's private reference visible"); $this->assertText('Page with public article', 'Node with public reference visible'); - // User to check if private articles are hidden. + // User to check if entry with private reference is hidden. $this->regularUser = $this->drupalCreateUser(['access content']); $this->drupalLogin($this->regularUser); $this->drupalGet('test-node-access-join'); @@ -166,7 +166,7 @@ function testNodeAccessJoin() { $this->assertNoText('Page with private article', "Node with private reference hidden"); $this->assertText('Page with public article', 'Node with public reference visible'); - // User to check if private articles are hidden. + // User to check if entry with private reference is visible. $this->accessUser = $this->drupalCreateUser(['access content', 'node test view']); $this->drupalLogin($this->accessUser); $this->drupalGet('test-node-access-join');