Skip to content

Commit f15ea42

Browse files
committed
fix tests on AppVeyor
1 parent 07cc830 commit f15ea42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Constraints/FileTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ public static function provideValidSizes()
103103
['1GI', 1073741824, true],
104104
['2g', 2000000000, false],
105105
['2G', 2000000000, false],
106-
['4g', 4 === \PHP_INT_SIZE ? 4000000000.0 : 4000000000, false],
107-
['4G', 4 === \PHP_INT_SIZE ? 4000000000.0 : 4000000000, false],
106+
['4g', 4 === \PHP_INT_SIZE ? '4000000000' : 4000000000, false],
107+
['4G', 4 === \PHP_INT_SIZE ? '4000000000' : 4000000000, false],
108108
];
109109
}
110110

0 commit comments

Comments
 (0)