]> source.dussan.org Git - jquery.git/commitdiff
Tests: Remove unused variables
authorOleg Gaidarenko <markelog@gmail.com>
Wed, 26 Feb 2014 23:33:15 +0000 (03:33 +0400)
committerOleg Gaidarenko <markelog@gmail.com>
Tue, 15 Apr 2014 13:46:26 +0000 (17:46 +0400)
test/data/testrunner.js
test/unit/selector.js

index b97f3453ba6462bbe1c61967043b0ed4b26b9548..e5ee2f98025393ffbe2653efbfd93760d135545b 100644 (file)
@@ -1,17 +1,13 @@
 define(function() {
 
-// Allow subprojects to test against their own fixtures
-var qunitModule = QUnit.module,
-       qunitTest = QUnit.test,
-       // Store the old counts so that we only assert on tests that have actually leaked,
-       // instead of asserting every time a test has leaked sometime in the past
+// Store the old counts so that we only assert on tests that have actually leaked,
+// instead of asserting every time a test has leaked sometime in the past
+var reset,
        oldCacheLength = 0,
        oldActive = 0,
 
        expectedDataKeys = {},
-
        splice = [].splice,
-       reset,
        ajaxSettings = jQuery.ajaxSettings;
 
 /**
index c3cdd31db054ea105e1c24aca463ae560d750ecc..57e10489495bf3c610b8e3c1cfbf90dab97bf9ef 100644 (file)
@@ -100,7 +100,7 @@ test( "selectors with comma", function() {
        equal( fixture.find( "h2 , div p" ).filter( "h2" ).length, 1, "has to find one <h2>" );
 });
 
-test("child and adjacent", function() {
+test( "child and adjacent", function() {
        expect( 27 );
 
        var nothiddendiv;
@@ -144,7 +144,7 @@ test("child and adjacent", function() {
 test("attributes", function() {
        expect( 54 );
 
-       var opt, input, attrbad, div, withScript;
+       var attrbad, div, withScript;
 
        t( "Find elements with a tabindex attribute", "[tabindex]", ["listWithTabIndex", "foodWithNegativeTabIndex", "linkWithTabIndex", "linkWithNegativeTabIndex", "linkWithNoHrefWithTabIndex", "linkWithNoHrefWithNegativeTabIndex"] );