summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/simplexml/tests/profile08.phpt1
-rw-r--r--ext/simplexml/tests/profile11.phpt4
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";
}