summaryrefslogtreecommitdiff
path: root/ext/simplexml/tests/sxe_004.phpt
diff options
context:
space:
mode:
authorPedro Magalhães <mail@pmmaga.net>2016-11-20 18:37:06 +0100
committerNikita Popov <nikic@php.net>2016-11-20 21:11:53 +0100
commit617dcf1b37ed43bba35e5f720383addb8ae7c562 (patch)
treecc91184a5c662ad5a3715e214edaed37fbcb90c2 /ext/simplexml/tests/sxe_004.phpt
parent9c5af4e4cb2f1cadc659542dad8967e9fd05f1d4 (diff)
downloadphp-git-617dcf1b37ed43bba35e5f720383addb8ae7c562.tar.gz
Remove the binary cast from unrelated tests
Diffstat (limited to 'ext/simplexml/tests/sxe_004.phpt')
-rw-r--r--ext/simplexml/tests/sxe_004.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/simplexml/tests/sxe_004.phpt b/ext/simplexml/tests/sxe_004.phpt
index 20431de8be..ac4bcd8bf7 100644
--- a/ext/simplexml/tests/sxe_004.phpt
+++ b/ext/simplexml/tests/sxe_004.phpt
@@ -74,7 +74,7 @@ class SXETest extends SimpleXMLIterator
}
}
-$sxe = new SXETest((binary)$xml);
+$sxe = new SXETest($xml);
$rit = new RecursiveIteratorIterator($sxe, RecursiveIteratorIterator::SELF_FIRST);
foreach($rit as $data) {