We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3297c2 commit d01bb7aCopy full SHA for d01bb7a
test/browser/index.js
@@ -141,7 +141,7 @@ exports.tests = {
141
var scriptHtml = '<script>alert("hello world")</script>';
142
head.innerHTML = scriptHtml;
143
144
- assertSame("original and processed", head.innerHTML, scriptHtml);
+ assertEquals("original and processed", head.innerHTML, scriptHtml);
145
146
},
147
parse_styletags : function() {
@@ -151,7 +151,7 @@ exports.tests = {
151
var styleHtml = '<style>body: {color: #fff;}</style>';
152
head.innerHTML = styleHtml;
153
154
- assertSame("original and processed", head.innerHTML, styleHtml);
+ assertEquals("original and processed", head.innerHTML, styleHtml);
155
156
157
parse_doublespacetags : function() {
0 commit comments