Skip to content

Commit 4baecc1

Browse files
committed
ext/simplexml: Remove bool type coercions in tests
1 parent 40be5fa commit 4baecc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/simplexml/tests/profile13.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2121
EOF;
2222

2323
$sxe = simplexml_load_string($xml);
24-
var_dump($sxe->children('soap', 1));
24+
var_dump($sxe->children('soap', true));
2525

26-
$sxe = simplexml_load_string($xml, NULL, 0, 'soap', 1);
26+
$sxe = simplexml_load_string($xml, NULL, 0, 'soap', true);
2727
var_dump($sxe->Body);
2828
var_dump($sxe->Body->children(''));
2929
var_dump($sxe->Body->children('')->businessList);

0 commit comments

Comments
 (0)