diff --git a/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/MarshallingSessionHandlerTest.php b/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/MarshallingSessionHandlerTest.php index e9eb46801e..c414026faa 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/MarshallingSessionHandlerTest.php +++ b/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/MarshallingSessionHandlerTest.php @@ -72,9 +72,9 @@ class MarshallingSessionHandlerTest extends TestCase $marshallingSessionHandler = new MarshallingSessionHandler($this->handler, $this->marshaller); $this->handler->expects($this->once())->method('gc') - ->with('maxlifetime')->willReturn(true); + ->with(4711)->willReturn(true); - $marshallingSessionHandler->gc('maxlifetime'); + $marshallingSessionHandler->gc(4711); } public function testRead()