From: Oleg Date: Sun, 23 Dec 2012 16:51:07 +0000 (+0400) Subject: Use tabs instead of spaces X-Git-Tag: 2.0.0b1~59^2~21 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2dd2e4886b394a85b86da9fbd433706a8af9b7cd;p=jquery.git Use tabs instead of spaces "$" => "jQuery" --- diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index 2f67ff06d..b8b5e1724 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -2242,9 +2242,9 @@ test( "insertAfter, insertBefore, etc do not work when destination is original e test( "Index for function argument should be received (#13094)", 2, function() { var i = 0; - jQuery("
").before(function( index ) { - equal( index, i++, "Index should be correct" ); - }); + jQuery("
").before(function( index ) { + equal( index, i++, "Index should be correct" ); + }); }); @@ -2252,7 +2252,7 @@ test( "Make sure jQuery.fn.remove can work on elements in documentFragment", 1, var fragment = document.createDocumentFragment(), div = fragment.appendChild( document.createElement("div") ); - $( div ).remove(); + jQuery( div ).remove(); equal( fragment.childNodes.length, 0, "div element was removed from documentFragment" ); });