]> granicus.if.org Git - php/commitdiff
update the tests proper-like
authorSterling Hughes <sterling@php.net>
Sat, 17 Jan 2004 21:47:43 +0000 (21:47 +0000)
committerSterling Hughes <sterling@php.net>
Sat, 17 Jan 2004 21:47:43 +0000 (21:47 +0000)
ext/simplexml/tests/profile08.phpt
ext/simplexml/tests/profile11.phpt

index 6fedb4859a90c15253376b48b1f3d28172389e58..bbb69b75a8c5c8a45cb83716ae1105a9c459c4f7 100644 (file)
@@ -15,5 +15,4 @@ echo $root->child['attribute'];
 echo "\n---Done---\n";
 ?>
 --EXPECT--
-
 ---Done--- 
index c5d764f1b2767e74eb03a8f98d0d8b84552bfd1c..e68e6bd510ef90e5d421fd2bbe5dc09db28a057a 100644 (file)
@@ -12,9 +12,9 @@ $root = simplexml_load_string('<?xml version="1.0"?>
 </root>
 ');
 
-echo $root->children('reserved')->child;
+echo $root->children('reserved-ns')->child;
 echo "\n";
-echo $root->children('special')->child;
+echo $root->children('special-ns')->child;
 foreach ($root->child as $child) {
        echo "$child\n";
 }