Test: Switch leftover andSelf to addBack

This commit is contained in:
Michał Gołębiowski 2014-10-30 14:19:03 +01:00
parent f1913cf031
commit 2ea57c1002
2 changed files with 3 additions and 3 deletions

View File

@ -1687,7 +1687,7 @@ test( "hide should not leave hidden inline elements visible (#14848)", 2, functi
});
test( "Handle queue:false promises", 10, function() {
var foo = jQuery( "#foo" ).clone().andSelf(),
var foo = jQuery( "#foo" ).clone().addBack(),
step = 1;
foo.animate({

View File

@ -10,7 +10,7 @@ test( "find(String) under non-elements", function() {
var j = jQuery("#nonnodes").contents();
equal( j.find("div").length, 0, "Check node,textnode,comment to find zero divs" );
equal( j.find("div").andSelf().length, 3, "Check node,textnode,comment to find zero divs, but preserves pushStack" );
equal( j.find("div").addBack().length, 3, "Check node,textnode,comment to find zero divs, but preserves pushStack" );
});
test( "find(leading combinator)", function() {
@ -47,7 +47,7 @@ test( "find(node|jQuery object)", function() {
equal( $two.find( $first ).length, 0, "first is in the collection and not within two" );
equal( $two.find( $first ).length, 0, "first is in the collection and not within two(node)" );
equal( $two.find( $foo[ 0 ] ).andSelf().length, 2, "find preserves the pushStack, see #12009" );
equal( $two.find( $foo[ 0 ] ).addBack().length, 2, "find preserves the pushStack, see #12009" );
});
test("is(String|undefined)", function() {