diff options
-rw-r--r-- | ext/simplexml/tests/profile08.phpt | 1 | ||||
-rw-r--r-- | ext/simplexml/tests/profile11.phpt | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/ext/simplexml/tests/profile08.phpt b/ext/simplexml/tests/profile08.phpt index 6fedb4859a..bbb69b75a8 100644 --- a/ext/simplexml/tests/profile08.phpt +++ b/ext/simplexml/tests/profile08.phpt @@ -15,5 +15,4 @@ echo $root->child['attribute']; echo "\n---Done---\n"; ?> --EXPECT-- - ---Done--- diff --git a/ext/simplexml/tests/profile11.phpt b/ext/simplexml/tests/profile11.phpt index c5d764f1b2..e68e6bd510 100644 --- a/ext/simplexml/tests/profile11.phpt +++ b/ext/simplexml/tests/profile11.phpt @@ -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"; } |