diff options
| author | Antony Dovgal <tony2001@php.net> | 2006-07-27 08:14:51 +0000 |
|---|---|---|
| committer | Antony Dovgal <tony2001@php.net> | 2006-07-27 08:14:51 +0000 |
| commit | 6d6bd77429d2e96329070249c31d63dd392a97e4 (patch) | |
| tree | c2c54c3edbfe4ac857ddf62e86e5043744b7b5fe | |
| parent | 0d164110773f3ba224776892809da774351d6502 (diff) | |
| download | php-git-6d6bd77429d2e96329070249c31d63dd392a97e4.tar.gz | |
MFB: fix test on 64bit machines
| -rw-r--r-- | ext/calendar/tests/jdtomonthname.phpt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/calendar/tests/jdtomonthname.phpt b/ext/calendar/tests/jdtomonthname.phpt index 1b5118a96f..76d127d6be 100644 --- a/ext/calendar/tests/jdtomonthname.phpt +++ b/ext/calendar/tests/jdtomonthname.phpt @@ -10,7 +10,7 @@ $jd_days = Array( 2440588, -1, array(), - 1000000000 + 10000000 ); foreach ($jd_days as $jd_day) { @@ -62,10 +62,10 @@ bool(false) Warning: jdmonthname() expects parameter 1 to be long, array given in %s on line %d bool(false) -string(0) "" -string(0) "" -string(0) "" -string(0) "" -string(6) "AdarII" +string(3) "Dec" +string(8) "December" +string(3) "Jul" +string(4) "July" +string(6) "Tishri" string(0) "" Done |
