Skip to content

Commit

Permalink
fix: correct misnamed check
Browse files Browse the repository at this point in the history
  • Loading branch information
sulsanaul authored and WilcoFiers committed Mar 3, 2018
1 parent 6617800 commit 1e709e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/checks/keyboard/has-no-more-than-one-banner.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ describe('has-no-more-than-one-banner', function () {

it('should return true if there are multiple headers contained in sectioning elements', function(){
var params = checkSetup('<div role="main" id="target"><header></header><header></header></div>');
assert.isTrue(checks['has-no-more-than-one-main'].evaluate.apply(checkContext, params));
assert.isTrue(checks['has-no-more-than-one-banner'].evaluate.apply(checkContext, params));
});

it('should return true if there is only one element with role banner', function(){
Expand Down

0 comments on commit 1e709e0

Please sign in to comment.