diff options
author | Timo Tijhof <krinklemail@gmail.com> | 2012-11-01 05:30:39 +0100 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2012-11-01 16:39:45 -0400 |
commit | e2cdf527d6a04bdcb98081a9f4f3672ea2e90ebc (patch) | |
tree | b50a1ea5372abda14b3199bb22631de0eac60f52 | |
parent | 14e1501b89491bad5744af4f2a8d084834f9c295 (diff) | |
download | jquery-e2cdf527d6a04bdcb98081a9f4f3672ea2e90ebc.tar.gz jquery-e2cdf527d6a04bdcb98081a9f4f3672ea2e90ebc.zip |
Followup to gh-997, decode entities in test names. Close gh-1013.
-rw-r--r-- | test/unit/manipulation.js | 6 |
1 files changed, 3 insertions, 3 deletions
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<Element>|jQuery)", function() { +test("prepend(String|Element|Array<Element>|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<Element>|jQuery)", function() { +test("prependTo(String|Element|Array<Element>|jQuery)", function() { expect(6); var defaultText = "Try them out:"; jQuery("<b>buga</b>").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<Element>|jQuery)", function() { +test("before(String|Element|Array<Element>|jQuery)", function() { testBefore(manipulationBareObj); }); |