- Remve bogus part of test

This commit is contained in:
Marcus Boerger 2005-11-06 12:25:53 +00:00
parent 71ad4dd19b
commit 33c650020a

View 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