Skip to content

Commit cd7dc09

Browse files
committed
Reverted test case for matcher
1 parent 5a52edd commit cd7dc09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/rule-matches/autocomplete-matches.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ describe('autocomplete-matches', function() {
4646
});
4747
});
4848

49-
it('returns true for elements with an empty autocomplete', function() {
49+
it('returns false for elements with an empty autocomplete', function() {
5050
var vNode = queryFixture('<input id="target" autocomplete=" ">');
51-
assert.isTrue(rule.matches(null, vNode));
51+
assert.isFalse(rule.matches(null, vNode));
5252
});
5353

5454
it('returns false for intput[type=hidden]', function() {

0 commit comments

Comments
 (0)