From 1a26e41917300708d817e96ca2141a01c982c096 Mon Sep 17 00:00:00 2001 From: jeresig Date: Mon, 30 Nov 2009 14:39:34 -0500 Subject: [PATCH] Use .add() to merge two test groups together for .unwrap(). --- test/unit/manipulation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index a0ce302..21ab6af 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -127,7 +127,7 @@ var testUnwrap = function() { var abcd = jQuery('#unwrap1 > span, #unwrap2 > span').get(), abcdef = jQuery('#unwrap span').get(); - equals( jQuery('#unwrap1 span, #unwrap2 span:first').unwrap().length, 3, 'make #unwrap1 and #unwrap2 go away' ); + equals( jQuery('#unwrap1 span').add('#unwrap2 span:first').unwrap().length, 3, 'make #unwrap1 and #unwrap2 go away' ); same( jQuery('#unwrap > span').get(), abcd, 'all four spans should still exist' ); same( jQuery('#unwrap3 span').unwrap().get(), jQuery('#unwrap3 > span').get(), 'make all b in #unwrap3 go away' ); -- 1.7.10.4