aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRichard Gibson <richard.gibson@gmail.com>2012-11-30 16:11:51 -0500
committerRichard Gibson <richard.gibson@gmail.com>2012-11-30 16:11:51 -0500
commitb382af685a3f590d03be7a9dc790a657c7b33f99 (patch)
tree6c95cd7fe0474f4009c524f0b753371132978d26 /test
parente63625e16e0e337d2ddafd6b46313434dfae3f84 (diff)
downloadjquery-b382af685a3f590d03be7a9dc790a657c7b33f99.tar.gz
jquery-b382af685a3f590d03be7a9dc790a657c7b33f99.zip
keep manipulation.js assertions consistent
Diffstat (limited to 'test')
-rw-r--r--test/unit/manipulation.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js
index f0cdfa346..4a980b249 100644
--- a/test/unit/manipulation.js
+++ b/test/unit/manipulation.js
@@ -441,7 +441,7 @@ var testAppend = function(valueObj) {
equal( $radioChecked[0].checked, true, "Reappending radios uphold which radio is checked" );
equal( $radioUnchecked[0].checked, false, "Reappending radios uphold not being checked" );
- equal( jQuery("<div/>").append("option<area/>")[0].childNodes.length, 2, "HTML-string with leading text should be processed correctly" );
+ equal( jQuery("<div/>").append( valueObj("option<area/>") )[0].childNodes.length, 2, "HTML-string with leading text should be processed correctly" );
};
test("append(String|Element|Array<Element>|jQuery)", function() {