Issue #2064641 by jlindsey15: Fixed Remove Unused local variable from /core/modules/node/lib/Drupal/node/Tests/NodeAccessBaseTableTest.php.

8.0.x
webchick 2013-08-15 10:40:46 -07:00
parent 8741478544
commit 552ed3b356
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ class NodeAccessBaseTableTest extends NodeTestBase {
$access_user = $this->drupalCreateUser(array('access content', 'create article content', 'node test view', 'search content'));
$this->drupalLogin($access_user);
foreach ($this->nodesByUser as $uid => $private_status) {
foreach ($this->nodesByUser as $private_status) {
foreach ($private_status as $nid => $is_private) {
$this->drupalGet('node/' . $nid);
$this->assertResponse(200);