diff options
author | Sterling Hughes <sterling@php.net> | 2004-01-17 21:47:43 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2004-01-17 21:47:43 +0000 |
commit | 6bd7c45f749d70ad6c73288cf192e3d2fc8777cf (patch) | |
tree | 0f219078afc185b0b4495273661c407ad6e933b0 /ext/simplexml | |
parent | 594f6433af44e7d223e30b247c8f995ef90a558e (diff) | |
download | php-git-6bd7c45f749d70ad6c73288cf192e3d2fc8777cf.tar.gz |
update the tests proper-like
Diffstat (limited to 'ext/simplexml')
-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"; } |