Skip to content

Commit d002a0d

Browse files
committedJul 28, 2022
Change test to ignore INT_MIN/MAX, and fixed off WS
1 parent d998054 commit d002a0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎ext/date/tests/bug75035.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var_dump('PHP version', PHP_VERSION);
88

99
foreach ([PHP_INT_MIN, PHP_INT_MAX] as $extreme) {
1010
$i = 64;
11-
while ($i --> 0) {
11+
while ($i-- > 1) {
1212
$d = new DateTime('@' . ($extreme >> $i));
1313
$s = serialize($d);
1414
try {

0 commit comments

Comments
 (0)