Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Feb 4, 2020
1 parent 4e8532d commit 2292c5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/Session/Storage/PhpBridgeSessionStorageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ public function testPhpSession()
{
$storage = $this->getStorage();

$this->assertNotSame(\PHP_SESSION_ACTIVE, session_status());
$this->assertNotSame(PHP_SESSION_ACTIVE, session_status());
$this->assertFalse($storage->isStarted());

session_start();
$this->assertTrue(isset($_SESSION));
$this->assertSame(\PHP_SESSION_ACTIVE, session_status());
$this->assertSame(PHP_SESSION_ACTIVE, session_status());
// PHP session might have started, but the storage driver has not, so false is correct here
$this->assertFalse($storage->isStarted());

Expand Down

0 comments on commit 2292c5c

Please sign in to comment.