]> source.dussan.org Git - jquery.git/commitdiff
Followup to gh-997, decode entities in test names. Close gh-1013.
authorTimo Tijhof <krinklemail@gmail.com>
Thu, 1 Nov 2012 04:30:39 +0000 (05:30 +0100)
committerDave Methvin <dave.methvin@gmail.com>
Thu, 1 Nov 2012 20:39:45 +0000 (16:39 -0400)
test/unit/manipulation.js

index 714e8f4bc8d3dbdfa29935622cedaf746d11cfe5..ce0af136eb13dea15fecf278519b1acccf1c3b8f 100644 (file)
@@ -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&gt;|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&gt;|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&gt;|jQuery)", function() {
+test("before(String|Element|Array<Element>|jQuery)", function() {
        testBefore(manipulationBareObj);
 });