Skip to content

Commit 488e53c

Browse files
committed
Fixed test case
1 parent 778902d commit 488e53c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/date/tests/big_year.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ Handling of large year values
66
<?php
77
date_default_timezone_set("America/Toronto");
88

9-
$t = mktime(0,0,0,1,1,292277026596);
9+
$t = mktime(0,0,0,1,1,2922770265);
1010

1111
var_dump(date("r", $t));
1212

1313
echo "OK\n";
1414
?>
15-
--EXPECT--
16-
string(39) "Fri, 01 Jan 292277026596 00:00:00 -0500"
15+
--EXPECTF--
16+
string(%d) "%s, 01 Jan 2922770265 00:00:00 -0500"
1717
OK

0 commit comments

Comments
 (0)