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/zlib/tests/gzreadgzwriteplain.phpt | |
parent | b98357823a816a55097fc7f6f833db88722efeea (diff) | |
download | php-git-9c5af4e4cb2f1cadc659542dad8967e9fd05f1d4.tar.gz |
Remove the b prefix from literals on unrelated tests
Diffstat (limited to 'ext/zlib/tests/gzreadgzwriteplain.phpt')
-rw-r--r-- | ext/zlib/tests/gzreadgzwriteplain.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zlib/tests/gzreadgzwriteplain.phpt b/ext/zlib/tests/gzreadgzwriteplain.phpt index 7a5a5025aa..58901ac08f 100644 --- a/ext/zlib/tests/gzreadgzwriteplain.phpt +++ b/ext/zlib/tests/gzreadgzwriteplain.phpt @@ -5,7 +5,7 @@ gzopen(), gzread(), gzwrite() for non-compressed data if (!extension_loaded("zlib")) print "skip"; ?> --FILE-- <?php -$original = str_repeat(b"hallo php",4096); +$original = str_repeat("hallo php",4096); $filename = tempnam(sys_get_temp_dir(), "phpt"); $fp = fopen($filename, "wb"); |