Skip to content

Commit 9f5613b

Browse files
committed
Fix test
1 parent 8770977 commit 9f5613b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/src/OneLogin/Saml2/AuthTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,6 +573,7 @@ public function testProcessSLORequestDeletingSession()
573573
* a LogoutResponse is created and a redirection executed
574574
*
575575
* @covers OneLogin_Saml2_Auth::processSLO
576+
* @runInSeparateProcess
576577
*/
577578
public function testProcessSLORequestDeletingSessionCallback()
578579
{
@@ -617,7 +618,7 @@ public function testProcessSLORequestDeletingSessionCallback()
617618
// Session is alive
618619
$this->assertTrue(isset($_SESSION['samltest']));
619620
// But has been modified
620-
$this->assertFalse(isset($_SESSION['samltest']));
621+
$this->assertFalse($_SESSION['samltest']);
621622
}
622623
}
623624
}

0 commit comments

Comments
 (0)