Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/c14n-non-exclusive-unit-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ exports["findAncestorNs: Should not find namespace when both has no prefix"] = f
var xpath = "//*[local-name()='child2']";
var expected = [];

test_findAncestorNs(xml, xpath, expected);
test_findAncestorNs(test, xml, xpath, expected);
};

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

test_findAncestorNs(xml, xpath, expected);
test_findAncestorNs(test, xml, xpath, expected);
};

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