From 2dd2e4886b394a85b86da9fbd433706a8af9b7cd Mon Sep 17 00:00:00 2001 From: Oleg Date: Sun, 23 Dec 2012 20:51:07 +0400 Subject: [PATCH] Use tabs instead of spaces "$" => "jQuery" --- test/unit/manipulation.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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" ); }); -- 2.39.5