Skip to content

Commit 370536e

Browse files
committed
Fix output of issue219 test to correspond to actual test being made.
1 parent 1ee8483 commit 370536e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/issue219.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ tape('Basic Check: pass jsdom object to output', function(t) {
2020
}, function(data) {
2121
var window = new JSDOM().window;
2222
t.ok(data.htmlNode instanceof window.HTMLElement, 'htmlNode is an HTMLElement');
23-
t.ok(data.svgNode instanceof window.SVGElement, 'svgNode is an HTMLElement');
24-
t.ok(data.mmlNode instanceof window.Element, 'mmlNode is an HTMLElement');
23+
t.ok(data.svgNode instanceof window.SVGElement, 'svgNode is an SVGElement');
24+
t.ok(data.mmlNode instanceof window.Element, 'mmlNode is an Element');
2525
});
2626
});

0 commit comments

Comments
 (0)