aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/core.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/core.js')
-rw-r--r--test/unit/core.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/unit/core.js b/test/unit/core.js
index c0fa065e0..ed638eb1e 100644
--- a/test/unit/core.js
+++ b/test/unit/core.js
@@ -1244,7 +1244,8 @@ test("jQuery.parseHTML", function() {
equal( html[ 0 ].innerHTML, "test div", "Content should be preserved" );
equal( jQuery.parseHTML("<span><span>").length, 1, "Incorrect html-strings should not break anything" );
- equal( jQuery.parseHTML("<td><td>")[ 1 ].parentNode.nodeType, 11, "parentNode should be documentFragment" );
+ equal( jQuery.parseHTML("<td><td>")[ 1 ].parentNode.nodeType, 11,
+ "parentNode should be documentFragment for wrapMap (variable in manipulation module) elements too" );
});
test("jQuery.parseJSON", function(){