diff options
Diffstat (limited to 'ext/intl/tests/dateformat_bug68893.phpt')
-rw-r--r-- | ext/intl/tests/dateformat_bug68893.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/intl/tests/dateformat_bug68893.phpt b/ext/intl/tests/dateformat_bug68893.phpt index b3faf54342..5ada711c38 100644 --- a/ext/intl/tests/dateformat_bug68893.phpt +++ b/ext/intl/tests/dateformat_bug68893.phpt @@ -5,10 +5,10 @@ Bug #68893 Stackoverflow in datefmt_create --FILE-- <?php -$f = datefmt_create("en_us", -10000000, 1); +$f = datefmt_create("en_us", -10000000, 1); var_dump($f, intl_get_error_message()); -$f = datefmt_create("en_us", 1, -10000000); +$f = datefmt_create("en_us", 1, -10000000); var_dump($f, intl_get_error_message()); ?> |