From 3b76b588153e93c57679fd7ca287eb863994dd59 Mon Sep 17 00:00:00 2001 From: John Resig Date: Thu, 26 Aug 2010 14:37:58 -0400 Subject: [PATCH] Tweaked manipulation test to ignore order of elements from selector (not important to the test). --- 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 5efdca9..fdc391a 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -221,7 +221,7 @@ var testAppend = function(valueObj) { QUnit.reset(); expected = "This link has class=\"blog\": Simon Willison's WeblogYahooTry them out:"; - jQuery('#sap').append(valueObj(jQuery("#first, #yahoo"))); + jQuery('#sap').append(valueObj(jQuery("#yahoo, #first"))); equals( expected, jQuery('#sap').text(), "Check for appending of jQuery object" ); QUnit.reset(); -- 1.7.10.4