Skip to content

Commit 5cb18a3

Browse files
committed
Fix phpunit
1 parent e4c1fb2 commit 5cb18a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/src/OneLogin/Saml2/ResponseTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ public function testGetAttributes()
629629
$settings2 = new OneLogin_Saml2_Settings($settingsInfo);
630630
$response5 = new OneLogin_Saml2_Response($settings2, $xml4);
631631
$attrs = $response5->getAttributes();
632-
$this->assertEquals([0 => "test", 1 => "test2"], $attrs['uid']);
632+
$this->assertEquals(array(0 => "test", 1 => "test2"), $attrs['uid']);
633633
}
634634

635635
/**

0 commit comments

Comments
 (0)