diff options
author | Oleg Gaidarenko <markelog@gmail.com> | 2014-02-27 03:33:15 +0400 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2014-04-15 17:46:26 +0400 |
commit | 4d5596e3e412aa19528db12905bf8c09f3bde0ed (patch) | |
tree | 32385c2b63cb5bdb18f82f792b7b0b30e552178c /test/unit | |
parent | 0837e41509dd58cbb3c6dd82567900f9ec829e6b (diff) | |
download | jquery-4d5596e3e412aa19528db12905bf8c09f3bde0ed.tar.gz jquery-4d5596e3e412aa19528db12905bf8c09f3bde0ed.zip |
Tests: Remove unused variables
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/selector.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/selector.js b/test/unit/selector.js index c3cdd31db..57e104894 100644 --- a/test/unit/selector.js +++ b/test/unit/selector.js @@ -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"] ); |