diff options
author | Anatol Belski <ab@php.net> | 2014-01-09 15:28:09 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-01-09 15:28:09 +0100 |
commit | 4f115c0b7d35bc6f5c522e2ac426871eabb64832 (patch) | |
tree | bad32a8c0d7f7521bce5ee2ad1a7b064b5c8d17a /ext/date | |
parent | 418602adfb360f6bc43acd56fb6436633fc5fa62 (diff) | |
parent | b8774519e25f97bfcb40b365dee17e7492875074 (diff) | |
download | php-git-4f115c0b7d35bc6f5c522e2ac426871eabb64832.tar.gz |
Merge branch 'PHP-5.4' into PHP-5.5
* PHP-5.4:
fixed EOL in the test
Diffstat (limited to 'ext/date')
-rw-r--r-- | ext/date/tests/bug65371.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/date/tests/bug65371.phpt b/ext/date/tests/bug65371.phpt index cd025e06fc..a6e3126514 100644 --- a/ext/date/tests/bug65371.phpt +++ b/ext/date/tests/bug65371.phpt @@ -7,9 +7,9 @@ date.timezone=Europe/Berlin function p($str) { - echo $str, PHP_EOL; - echo strftime($str), PHP_EOL; - echo bin2hex($str), PHP_EOL; + echo $str, "\n"; + echo strftime($str), "\n"; + echo bin2hex($str), "\n"; echo bin2hex(strftime($str)); } |