diff options
author | John Resig <jeresig@gmail.com> | 2009-02-18 19:59:51 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2009-02-18 19:59:51 +0000 |
commit | 481171a3f81c46b9e46ffbf76a5cddcec83be850 (patch) | |
tree | 41df366f84f244a84a704618c692dc1dd32a496c | |
parent | ca79d866fe07302f03df2b3db09c886c6abef9ff (diff) | |
download | jquery-481171a3f81c46b9e46ffbf76a5cddcec83be850.tar.gz jquery-481171a3f81c46b9e46ffbf76a5cddcec83be850.zip |
Fixed some tests that were changed (fixed!) by fixing #3966.
-rw-r--r-- | test/unit/core.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/unit/core.js b/test/unit/core.js index 9befade7d..69a067656 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -996,12 +996,12 @@ test("prependTo(String|Element|Array<Element>|jQuery)", function() { reset(); expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog"; - jQuery([document.getElementById('yahoo'), document.getElementById('first')]).prependTo('#sap'); + jQuery([document.getElementById('first'), document.getElementById('yahoo')]).prependTo('#sap'); equals( expected, jQuery('#sap').text(), "Check for prepending of array of elements" ); reset(); - expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog"; - jQuery("#yahoo, #first").prependTo('#sap'); + expected = "YahooTry them out:This link has class=\"blog\": Simon Willison's Weblog"; + jQuery("#first, #yahoo").prependTo('#sap'); equals( expected, jQuery('#sap').text(), "Check for prepending of jQuery object" ); reset(); @@ -1090,12 +1090,12 @@ test("insertAfter(String|Element|Array<Element>|jQuery)", function() { reset(); expected = "This is a normal link: YahooTry them out:diveintomark"; - jQuery([document.getElementById('mark'), document.getElementById('first')]).insertAfter('#yahoo'); + jQuery([document.getElementById('first'), document.getElementById('mark')]).insertAfter('#yahoo'); equals( expected, jQuery('#en').text(), "Insert array of elements after" ); reset(); - expected = "This is a normal link: YahooTry them out:diveintomark"; - jQuery("#mark, #first").insertAfter('#yahoo'); + expected = "This is a normal link: YahoodiveintomarkTry them out:"; + jQuery("#first, #mark").insertAfter('#yahoo'); equals( expected, jQuery('#en').text(), "Insert jQuery after" ); }); |