JavaScript Tests - update tests to reflect changed behavior due to bug 409252

This commit is contained in:
bclary@bclary.com 2007-12-20 16:02:14 -08:00
parent 88b19c4b16
commit d28076f4ec
2 changed files with 4 additions and 4 deletions

View File

@ -61,7 +61,7 @@ TEST(2, obj, XML);
XMLList = obj;
TEST(3, obj, XMLList);
Namespace = {};
TEST(4, saveNamespace, Namespace);
Namespace = obj;
TEST(4, obj, Namespace);
END();

View File

@ -68,8 +68,8 @@ function test()
XMLList = obj;
reportCompare(obj, XMLList, summary + ': XMLList');
Namespace = {};
reportCompare(saveNamespace, Namespace, summary);
Namespace = obj;
reportCompare(obj, Namespace, summary + ': Namespace');
exitFunc ('test');
}