From: Marcus Boerger Date: Sun, 6 Nov 2005 12:25:53 +0000 (+0000) Subject: - Remve bogus part of test X-Git-Tag: php-5.1.0RC5~46 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=33c650020af0337f050c2ac40a377908f8417065;p=php - Remve bogus part of test --- 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