mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
JavaScript Tests - update tests to reflect changed behavior due to bug 409252
This commit is contained in:
parent
88b19c4b16
commit
d28076f4ec
@ -61,7 +61,7 @@ TEST(2, obj, XML);
|
|||||||
XMLList = obj;
|
XMLList = obj;
|
||||||
TEST(3, obj, XMLList);
|
TEST(3, obj, XMLList);
|
||||||
|
|
||||||
Namespace = {};
|
Namespace = obj;
|
||||||
TEST(4, saveNamespace, Namespace);
|
TEST(4, obj, Namespace);
|
||||||
|
|
||||||
END();
|
END();
|
||||||
|
@ -68,8 +68,8 @@ function test()
|
|||||||
XMLList = obj;
|
XMLList = obj;
|
||||||
reportCompare(obj, XMLList, summary + ': XMLList');
|
reportCompare(obj, XMLList, summary + ': XMLList');
|
||||||
|
|
||||||
Namespace = {};
|
Namespace = obj;
|
||||||
reportCompare(saveNamespace, Namespace, summary);
|
reportCompare(obj, Namespace, summary + ': Namespace');
|
||||||
|
|
||||||
exitFunc ('test');
|
exitFunc ('test');
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user