From: Timo Tijhof Date: Thu, 1 Nov 2012 04:30:39 +0000 (+0100) Subject: Followup to gh-997, decode entities in test names. Close gh-1013. X-Git-Tag: 1.9.0b1~129 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e2cdf527d6a04bdcb98081a9f4f3672ea2e90ebc;p=jquery.git Followup to gh-997, decode entities in test names. Close gh-1013. --- diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index 714e8f4bc..ce0af136e 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -829,7 +829,7 @@ var testPrepend = function(val) { equal( jQuery("#sap").text(), expected, "Check for prepending of array of jQuery objects" ); }; -test("prepend(String|Element|Array|jQuery)", function() { testPrepend(manipulationBareObj); }); @@ -888,7 +888,7 @@ test("prepend(Function) with incoming value", function() { equal( jQuery("#sap").text(), expected, "Check for prepending of jQuery object" ); }); -test("prependTo(String|Element|Array|jQuery)", function() { expect(6); var defaultText = "Try them out:"; jQuery("buga").prependTo("#first"); @@ -948,7 +948,7 @@ var testBefore = function(val) { equal( set.length, 1, "Insert the element before the disconnected node. should be a no-op" ); }; -test("before(String|Element|Array|jQuery)", function() { testBefore(manipulationBareObj); });