Skip to content

Commit

Permalink
Merge pull request #493 from DinoChiesa/po039-test-fixup
Browse files Browse the repository at this point in the history
fix: correct errant tests for PO039
  • Loading branch information
ssvaidyanathan authored Dec 7, 2024
2 parents 26b6db6 + 45ef95a commit 1c21957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/specs/PO039-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const test = (suffix, cb) => {
const fqfname = path.join(rootDir, filename),
policyXml = fs.readFileSync(fqfname, "utf-8"),
doc = new Dom().parseFromString(policyXml),
p = new Policy(doc.documentElement, this);
p = new Policy(rootDir, filename, this, doc);

p.getElement = () => doc.documentElement;

Expand Down

0 comments on commit 1c21957

Please sign in to comment.