diff options
author | Pedro Magalhães <mail@pmmaga.net> | 2016-11-06 22:28:42 +0100 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2016-11-20 21:11:53 +0100 |
commit | 9c5af4e4cb2f1cadc659542dad8967e9fd05f1d4 (patch) | |
tree | 8223a6d88419c2d2a3008e35c4059b075422dd42 /ext/standard/tests/streams/bug46426.phpt | |
parent | b98357823a816a55097fc7f6f833db88722efeea (diff) | |
download | php-git-9c5af4e4cb2f1cadc659542dad8967e9fd05f1d4.tar.gz |
Remove the b prefix from literals on unrelated tests
Diffstat (limited to 'ext/standard/tests/streams/bug46426.phpt')
-rw-r--r-- | ext/standard/tests/streams/bug46426.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/tests/streams/bug46426.phpt b/ext/standard/tests/streams/bug46426.phpt index 80dbcded80..8c95ea456e 100644 --- a/ext/standard/tests/streams/bug46426.phpt +++ b/ext/standard/tests/streams/bug46426.phpt @@ -5,7 +5,7 @@ Bug #46426 (3rd parameter offset of stream_get_contents not works for "0") $tmp = tmpfile(); -fwrite($tmp, b"12345"); +fwrite($tmp, "12345"); echo stream_get_contents($tmp, 2, 1); echo "\n"; |