Skip to content

Commit

Permalink
Fix small typo in rule report message of no-todo-test (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
freaktechnik committed Feb 7, 2021
1 parent 2bf226a commit 8afafdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules/no-todo-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const create = context => {
if (ava.hasTestModifier('todo')) {
context.report({
node,
message: '`test.todo()` should be not be used.'
message: '`test.todo()` should not be used.'
});
}
})
Expand Down

0 comments on commit 8afafdc

Please sign in to comment.