summaryrefslogtreecommitdiff
path: root/ext/date/tests/bug51096.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/date/tests/bug51096.phpt')
-rw-r--r--ext/date/tests/bug51096.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/date/tests/bug51096.phpt b/ext/date/tests/bug51096.phpt
index df31313a76..2b479a94a6 100644
--- a/ext/date/tests/bug51096.phpt
+++ b/ext/date/tests/bug51096.phpt
@@ -17,7 +17,7 @@ foreach ( $tests as $test )
$result = date_parse( $test );
$rel = $result['relative'];
echo $test, "\n- month: ", $rel['month'], '; day: ', $rel['day'],
- '; first-day-of: ', isset( $rel['first_day_of_month'] ) ? 'true' : 'false',
+ '; first-day-of: ', isset( $rel['first_day_of_month'] ) ? 'true' : 'false',
'; last-day-of: ', isset( $rel['last_day_of_month'] ) ? 'true' : 'false', "\n";
$date = new DateTime( '2010-03-06 15:21 UTC' );
echo '- ', $date->format( DateTime::ISO8601 );