Skip to content

Commit

Permalink
tests(no-negative-tabindex): fix typo in test name (#3520)
Browse files Browse the repository at this point in the history
  • Loading branch information
straker committed Jul 13, 2022
1 parent 94b6239 commit 84558f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/rule-matches/no-negative-tabindex.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ describe('no-negative-tabindex-matches', function() {
assert.isTrue(actual);
});

it('returns false for nodes with an invalid tabindex', function() {
it('returns false for nodes with a negative tabindex', function() {
var vNode = queryFixture('<div id="target" tabindex="-10"></div>');
var actual = rule.matches(null, vNode);
assert.isFalse(actual);
});
});
});

0 comments on commit 84558f6

Please sign in to comment.