8000 [HttpFoundation] fix tests · symfony/symfony@828fd2d · GitHub
[go: up one dir, main page]

Skip to content

Commit 828fd2d

Browse files
[HttpFoundation] fix tests
1 parent eb85b73 commit 828fd2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/SessionHandlerFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,6 @@ public function testCreateRedisHandlerFromDsn()
7272

7373
$ttlProperty = $reflection->getProperty('ttl');
7474
$ttlProperty->setAccessible(true);
75-
$this->assertSame('3600', $ttlProperty->getValue($handler));
75+
$this->assertSame(3600, $ttlProperty->getValue($handler));
7676
}
7777
}

0 commit comments

Comments
 (0)
0