diff --git a/rules/no-todo-test.js b/rules/no-todo-test.js index 55ef11d..e36bd9e 100644 --- a/rules/no-todo-test.js +++ b/rules/no-todo-test.js @@ -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.' }); } })