diff options
| author | Xinchen Hui <laruence@gmail.com> | 2017-10-17 11:35:40 +0800 |
|---|---|---|
| committer | Xinchen Hui <laruence@gmail.com> | 2017-10-17 11:35:40 +0800 |
| commit | 2f73f2436a968833d06067ad5fd1d2f17e0927b5 (patch) | |
| tree | 025146c25fe0092fa00dca7814f5b73da6a8db41 | |
| parent | 77ad860bf029b7c44f94030a939e332e45cdf934 (diff) | |
| download | php-git-2f73f2436a968833d06067ad5fd1d2f17e0927b5.tar.gz | |
Try to fix test
| -rw-r--r-- | ext/intl/tests/bug75378.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/tests/bug75378.phpt b/ext/intl/tests/bug75378.phpt index c79e7f68a2..c3909ce4dd 100644 --- a/ext/intl/tests/bug75378.phpt +++ b/ext/intl/tests/bug75378.phpt @@ -11,7 +11,7 @@ $formatter = new IntlDateFormatter("en-GB", IntlDateFormatter::NONE, IntlDateFor $position = 0; $parsedDate = $formatter->parse("2017-10-12", $position); var_dump($parsedDate, $position); -$localdate = $formatter->localtime("2017-10-12", $position1); +$localdate = $formatter->localtime("2017-10-12 00:00:00", $position1); var_dump($localdate, $position1); ?> --EXPECT-- |
