Skip to content
Snippets Groups Projects
Commit 552ed3b3 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2064641 by jlindsey15: Fixed Remove Unused local variable from...

Issue #2064641 by jlindsey15: Fixed Remove Unused local variable  from /core/modules/node/lib/Drupal/node/Tests/NodeAccessBaseTableTest.php.
parent 87414785
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -129,7 +129,7 @@ function testNodeAccessBasic() { ...@@ -129,7 +129,7 @@ function testNodeAccessBasic() {
$access_user = $this->drupalCreateUser(array('access content', 'create article content', 'node test view', 'search content')); $access_user = $this->drupalCreateUser(array('access content', 'create article content', 'node test view', 'search content'));
$this->drupalLogin($access_user); $this->drupalLogin($access_user);
foreach ($this->nodesByUser as $uid => $private_status) { foreach ($this->nodesByUser as $private_status) {
foreach ($private_status as $nid => $is_private) { foreach ($private_status as $nid => $is_private) {
$this->drupalGet('node/' . $nid); $this->drupalGet('node/' . $nid);
$this->assertResponse(200); $this->assertResponse(200);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment