Skip to content

Commit

Permalink
Fix build for PHP 5.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimeperez committed Mar 2, 2018
1 parent 063dd44 commit 041b752
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/SAML2/AssertionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,8 @@ public function testCommentsInSignedAssertion()
$result = $assertion->validate($publicKey);

$this->assertTrue($result);
$this->assertEquals("_1bbcf227253269d19a689c53cdd542fe2384a9538b", $assertion->getNameId()['Value']);
$nameId = $assertion->getNameId();
$this->assertEquals("_1bbcf227253269d19a689c53cdd542fe2384a9538b", $nameId['Value']);
}


Expand Down

0 comments on commit 041b752

Please sign in to comment.