Skip to content

Commit 2292c5c

Browse files
committed
Fix CS
1 parent 4e8532d commit 2292c5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Session/Storage/PhpBridgeSessionStorageTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ public function testPhpSession()
6161
{
6262
$storage = $this->getStorage();
6363

64-
$this->assertNotSame(\PHP_SESSION_ACTIVE, session_status());
64+
$this->assertNotSame(PHP_SESSION_ACTIVE, session_status());
6565
$this->assertFalse($storage->isStarted());
6666

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

0 commit comments

Comments
 (0)