update the tests proper-like

This commit is contained in:
Sterling Hughes 2004-01-17 21:47:43 +00:00
parent 594f6433af
commit 6bd7c45f74
2 changed files with 2 additions and 3 deletions

View File

@ -15,5 +15,4 @@ echo $root->child['attribute'];
echo "\n---Done---\n";
?>
--EXPECT--
---Done---

View 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";
}