Skip to content

Commit a259d83

Browse files
authored
Fix test case error (#338)
1 parent 10e8705 commit a259d83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/c14n-non-exclusive-unit-test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ exports["findAncestorNs: Should not find namespace when both has no prefix"] = f
100100
var xpath = "//*[local-name()='child2']";
101101
var expected = [];
102102

103-
test_findAncestorNs(xml, xpath, expected);
103+
test_findAncestorNs(test, xml, xpath, expected);
104104
};
105105

106106
exports["findAncestorNs: Should find namespace without prefix"] = function (test) {
@@ -109,7 +109,7 @@ exports["findAncestorNs: Should find namespace without prefix"] = function (test
109109
var xpath = "//*[local-name()='child2']";
110110
var expected = [{ prefix: "", namespaceURI: "bbb" }];
111111

112-
test_findAncestorNs(xml, xpath, expected);
112+
test_findAncestorNs(test, xml, xpath, expected);
113113
};
114114

115115
exports["findAncestorNs: Ignores namespace declared in the target xpath node"] = function (test) {

0 commit comments

Comments
 (0)