summaryrefslogtreecommitdiff
path: root/ext/phar/tests/zip/open_for_write_existing_c.phpt
diff options
context:
space:
mode:
authorPedro Magalhães <mail@pmmaga.net>2016-11-06 22:28:42 +0100
committerNikita Popov <nikic@php.net>2016-11-20 21:11:53 +0100
commit9c5af4e4cb2f1cadc659542dad8967e9fd05f1d4 (patch)
tree8223a6d88419c2d2a3008e35c4059b075422dd42 /ext/phar/tests/zip/open_for_write_existing_c.phpt
parentb98357823a816a55097fc7f6f833db88722efeea (diff)
downloadphp-git-9c5af4e4cb2f1cadc659542dad8967e9fd05f1d4.tar.gz
Remove the b prefix from literals on unrelated tests
Diffstat (limited to 'ext/phar/tests/zip/open_for_write_existing_c.phpt')
-rw-r--r--ext/phar/tests/zip/open_for_write_existing_c.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/phar/tests/zip/open_for_write_existing_c.phpt b/ext/phar/tests/zip/open_for_write_existing_c.phpt
index 3e769cf427..43d862a2f1 100644
--- a/ext/phar/tests/zip/open_for_write_existing_c.phpt
+++ b/ext/phar/tests/zip/open_for_write_existing_c.phpt
@@ -30,7 +30,7 @@ $phar->stopBuffering();
ini_set('phar.readonly', 1);
$fp = fopen($alias . '/b/c.php', 'wb');
-fwrite($fp, b'extra');
+fwrite($fp, 'extra');
fclose($fp);
include $alias . '/b/c.php';
?>