summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-01-09 15:27:26 +0100
committerAnatol Belski <ab@php.net>2014-01-09 15:27:26 +0100
commitb8774519e25f97bfcb40b365dee17e7492875074 (patch)
treeb6a78d08c2682e1f8d96e5d0f3826c17f083c590
parente927dbd1f67f7a689d61915da1df8003bf255248 (diff)
downloadphp-git-b8774519e25f97bfcb40b365dee17e7492875074.tar.gz
fixed EOL in the test
-rw-r--r--ext/date/tests/bug65371.phpt6
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));
}