summaryrefslogtreecommitdiff
path: root/ext/xmlrpc
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/xmlrpc
parentb98357823a816a55097fc7f6f833db88722efeea (diff)
downloadphp-git-9c5af4e4cb2f1cadc659542dad8967e9fd05f1d4.tar.gz
Remove the b prefix from literals on unrelated tests
Diffstat (limited to 'ext/xmlrpc')
-rw-r--r--ext/xmlrpc/tests/bug50285.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/xmlrpc/tests/bug50285.phpt b/ext/xmlrpc/tests/bug50285.phpt
index 5da803c367..0a5fb962b4 100644
--- a/ext/xmlrpc/tests/bug50285.phpt
+++ b/ext/xmlrpc/tests/bug50285.phpt
@@ -14,11 +14,11 @@ function test2($func, $params) {
}
function test3($func, $params) {
- return array('One', 3 => 'Three', b'Five' => 5, 'Six');
+ return array('One', 3 => 'Three', 'Five' => 5, 'Six');
}
function test4($func, $params) {
- return array('One', 'Three', 'Five', b'Six' => 6);
+ return array('One', 'Three', 'Five', 'Six' => 6);
}
$server = xmlrpc_server_create();