aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorOleg Gaidarenko <markelog@gmail.com>2014-02-27 03:33:15 +0400
committerOleg Gaidarenko <markelog@gmail.com>2014-04-15 17:46:00 +0400
commit4f14bea2c29fb9c1e1cf48da7f700c963e35f693 (patch)
tree3e1cbb2f807bd3cc8d8e524a028060b8a65e691a /test
parent80ea65edf7466afc11823a914b175bd835d5b228 (diff)
downloadjquery-4f14bea2c29fb9c1e1cf48da7f700c963e35f693.tar.gz
jquery-4f14bea2c29fb9c1e1cf48da7f700c963e35f693.zip
Tests: Remove unused variables
Diffstat (limited to 'test')
-rw-r--r--test/unit/selector.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/selector.js b/test/unit/selector.js
index 07850ca37..88d8a7ee2 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"] );