Skip to content

Commit fc4d960

Browse files
committed
Fix incompatible implicit float-to-int conversions
Signed-off-by: Alexander M. Turek <me@derrabus.de>
1 parent 19da02c commit fc4d960

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Store/PdoStoreTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function testInvalidTtlConstruct()
7272
{
7373
$this->expectException(InvalidTtlException::class);
7474

75-
return new PdoStore('sqlite:'.self::$dbFile, [], 0.1, 0.1);
75+
return new PdoStore('sqlite:'.self::$dbFile, [], 0.1, 0);
7676
}
7777

7878
/**

0 commit comments

Comments
 (0)