summaryrefslogtreecommitdiff
path: root/ext/phar/tests/phar_oo_compressed_002b.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/phar_oo_compressed_002b.phpt
parentb98357823a816a55097fc7f6f833db88722efeea (diff)
downloadphp-git-9c5af4e4cb2f1cadc659542dad8967e9fd05f1d4.tar.gz
Remove the b prefix from literals on unrelated tests
Diffstat (limited to 'ext/phar/tests/phar_oo_compressed_002b.phpt')
-rw-r--r--ext/phar/tests/phar_oo_compressed_002b.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/phar/tests/phar_oo_compressed_002b.phpt b/ext/phar/tests/phar_oo_compressed_002b.phpt
index d7213fdbaa..0e167012b7 100644
--- a/ext/phar/tests/phar_oo_compressed_002b.phpt
+++ b/ext/phar/tests/phar_oo_compressed_002b.phpt
@@ -30,10 +30,10 @@ var_dump($phar['c']->isCompressed());
$context = stream_context_create(array('phar'=>array('compress'=>Phar::BZ2)));
-file_put_contents($pname . '/b', b'new b');
-file_put_contents($pname . '/c', b'new c', 0, $context);
-file_put_contents($pname . '/d', b'new d');
-file_put_contents($pname . '/e', b'new e', 0, $context);
+file_put_contents($pname . '/b', 'new b');
+file_put_contents($pname . '/c', 'new c', 0, $context);
+file_put_contents($pname . '/d', 'new d');
+file_put_contents($pname . '/e', 'new e', 0, $context);
$phar = new Phar($fname);
var_dump(file_get_contents($pname . '/a'));