Skip to content

Commit

Permalink
Fix phpunit
Browse files Browse the repository at this point in the history
  • Loading branch information
pitbulk committed Mar 2, 2021
1 parent e4c1fb2 commit 5cb18a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/OneLogin/Saml2/ResponseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ public function testGetAttributes()
$settings2 = new OneLogin_Saml2_Settings($settingsInfo);
$response5 = new OneLogin_Saml2_Response($settings2, $xml4);
$attrs = $response5->getAttributes();
$this->assertEquals([0 => "test", 1 => "test2"], $attrs['uid']);
$this->assertEquals(array(0 => "test", 1 => "test2"), $attrs['uid']);
}

/**
Expand Down

0 comments on commit 5cb18a3

Please sign in to comment.