Skip to content

Commit 2db9bc0

Browse files
authored
Merge pull request #394 from mathjax/fix-test-219
Fix test issue219
2 parents 1ee8483 + 370536e commit 2db9bc0

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)