diff options
Diffstat (limited to 'xtask/tests/tidy-tests')
-rw-r--r-- | xtask/tests/tidy-tests/cli.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/tests/tidy-tests/cli.rs b/xtask/tests/tidy-tests/cli.rs index 573ffadbf..f9ca45292 100644 --- a/xtask/tests/tidy-tests/cli.rs +++ b/xtask/tests/tidy-tests/cli.rs | |||
@@ -43,7 +43,7 @@ fn no_todo() { | |||
43 | return; | 43 | return; |
44 | } | 44 | } |
45 | let text = std::fs::read_to_string(e.path()).unwrap(); | 45 | let text = std::fs::read_to_string(e.path()).unwrap(); |
46 | if text.contains("TODO") || text.contains("TOOD") { | 46 | if text.contains("TODO") || text.contains("TOOD") || text.contains("todo!") { |
47 | panic!( | 47 | panic!( |
48 | "\nTODO markers should not be committed to the master branch,\n\ | 48 | "\nTODO markers should not be committed to the master branch,\n\ |
49 | use FIXME instead\n\ | 49 | use FIXME instead\n\ |