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

Issue #2080607 by CaptainWonky, mrsinguyen: Remove Unused local variable from...

Issue #2080607 by CaptainWonky, mrsinguyen: Remove Unused local variable  from /core/modules/user/lib/Drupal/user/Tests/Views/HandlerFieldRoleTest.php.
parent 2db698ff
No related branches found
No related tags found
No related merge requests found
......@@ -32,10 +32,10 @@ public static function getInfo() {
public function testRole() {
// Create a couple of roles for the view.
$rolename_a = 'a' . $this->randomName(8);
$rid_a = $this->drupalCreateRole(array('access content'), $rolename_a, $rolename_a, 9);
$this->drupalCreateRole(array('access content'), $rolename_a, $rolename_a, 9);
$rolename_b = 'b' . $this->randomName(8);
$rid_b = $this->drupalCreateRole(array('access content'), $rolename_b, $rolename_b, 8);
$this->drupalCreateRole(array('access content'), $rolename_b, $rolename_b, 8);
$rolename_not_assigned = $this->randomName(8);
$this->drupalCreateRole(array('access content'), $rolename_not_assigned, $rolename_not_assigned);
......
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