]> granicus.if.org Git - php/commitdiff
- Remve bogus part of test
authorMarcus Boerger <helly@php.net>
Sun, 6 Nov 2005 12:25:53 +0000 (12:25 +0000)
committerMarcus Boerger <helly@php.net>
Sun, 6 Nov 2005 12:25:53 +0000 (12:25 +0000)
ext/calendar/tests/cal_days_in_month.phpt

index 71fe98f0b7eb9ba48d0695a9bbab2be4ae3536d1..9aaf3efdd0c240c31bb6f5cd784a683d1b5707ca 100644 (file)
@@ -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