aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/manipulation.js
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2010-08-26 14:37:58 -0400
committerJohn Resig <jeresig@gmail.com>2010-08-26 14:37:58 -0400
commit3b76b588153e93c57679fd7ca287eb863994dd59 (patch)
tree94b31fdfeaf3e57903e12443969335fb32db9b4a /test/unit/manipulation.js
parent5673e4bc3aa5991dfa51de5cb6d7027f2545ad03 (diff)
downloadjquery-3b76b588153e93c57679fd7ca287eb863994dd59.tar.gz
jquery-3b76b588153e93c57679fd7ca287eb863994dd59.zip
Tweaked manipulation test to ignore order of elements from selector (not important to the test).
Diffstat (limited to 'test/unit/manipulation.js')
-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 5efdca998..fdc391a54 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();