diff options
author | Marcus Boerger <helly@php.net> | 2005-11-06 12:25:53 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2005-11-06 12:25:53 +0000 |
commit | 33c650020af0337f050c2ac40a377908f8417065 (patch) | |
tree | 03c08eaafa50db5fd4f9d91ba6f031e444d7fbc2 /ext/calendar/tests/cal_days_in_month.phpt | |
parent | 71ad4dd19ba155430fcea2984c9b7222df8958bf (diff) | |
download | php-git-33c650020af0337f050c2ac40a377908f8417065.tar.gz |
- Remve bogus part of test
Diffstat (limited to 'ext/calendar/tests/cal_days_in_month.phpt')
-rw-r--r-- | ext/calendar/tests/cal_days_in_month.phpt | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/calendar/tests/cal_days_in_month.phpt b/ext/calendar/tests/cal_days_in_month.phpt index 71fe98f0b7..9aaf3efdd0 100644 --- a/ext/calendar/tests/cal_days_in_month.phpt +++ b/ext/calendar/tests/cal_days_in_month.phpt @@ -10,8 +10,6 @@ $num = cal_days_in_month(CAL_GREGORIAN, 2, 2003); echo "There are $num days in February 2003\n"; $num = cal_days_in_month(CAL_GREGORIAN, 2, 2004); echo "There are $num days in February 2004\n"; -$num = cal_days_in_month(CAL_GREGORIAN, -1, -2003); -echo "There are $num days in -1, -2003\n"; $num = cal_days_in_month(CAL_GREGORIAN, 12, 2034); echo "There are $num days in December 2034\n"; ?> @@ -19,5 +17,4 @@ echo "There are $num days in December 2034\n"; There are 31 days in August 2003 There are 28 days in February 2003 There are 29 days in February 2004 -There are 990210 days in -1, -2003 There are 31 days in December 2034 |