Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / http-foundation / Tests / Session / Storage / Proxy / SessionHandlerProxyTest.php
index df277ac5a8defb9b74464315d308831f08fb85ee..682825356a7246a329f25fda230fa960f061d184 100644 (file)
@@ -46,7 +46,7 @@ class SessionHandlerProxyTest extends TestCase
         $this->proxy = null;
     }
 
-    public function testOpen()
+    public function testOpenTrue()
     {
         $this->mock->expects($this->once())
             ->method('open')
@@ -54,11 +54,7 @@ class SessionHandlerProxyTest extends TestCase
 
         $this->assertFalse($this->proxy->isActive());
         $this->proxy->open('name', 'id');
-        if (\PHP_VERSION_ID < 50400) {
-            $this->assertTrue($this->proxy->isActive());
-        } else {
-            $this->assertFalse($this->proxy->isActive());
-        }
+        $this->assertFalse($this->proxy->isActive());
     }
 
     public function testOpenFalse()