--- embedaddon/php/ext/date/tests/bug45554.phpt 2012/02/21 23:47:53 1.1 +++ embedaddon/php/ext/date/tests/bug45554.phpt 2013/07/22 01:31:39 1.1.1.2 @@ -9,12 +9,12 @@ $d = date_create_from_format($format, "03-15-2005 12:2 echo $d->format($format), "\n"; $d = date_create_from_format($format, "03-15-2005 12:22:29.001001 PST"); -echo $d->format($format), " (precision isn't enough to show the 1 here)\n"; +echo $d->format($format), "\n"; $d = date_create_from_format($format, "03-15-2005 12:22:29.0010 PST"); echo $d->format($format), "\n"; ?> --EXPECT-- 03-15-2005 12:22:29.000000 PST -03-15-2005 12:22:29.001000 PST (precision isn't enough to show the 1 here) +03-15-2005 12:22:29.001001 PST 03-15-2005 12:22:29.001000 PST