From: Sterling Hughes Date: Sat, 17 Jan 2004 21:47:43 +0000 (+0000) Subject: update the tests proper-like X-Git-Tag: php_ibase_before_split~141 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6bd7c45f749d70ad6c73288cf192e3d2fc8777cf;p=php update the tests proper-like --- 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(' '); -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"; }