Skip to content

Commit 5d97f48

Browse files
authored
Merge branch 'develop' into issue392
2 parents 65447ec + 2db9bc0 commit 5d97f48

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)