diff options
Diffstat (limited to 'crates/ra_tools')
-rw-r--r-- | crates/ra_tools/tests/cli.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_tools/tests/cli.rs b/crates/ra_tools/tests/cli.rs index c672e5788..91b19c8f8 100644 --- a/crates/ra_tools/tests/cli.rs +++ b/crates/ra_tools/tests/cli.rs | |||
@@ -34,7 +34,7 @@ fn no_todo() { | |||
34 | return; | 34 | return; |
35 | } | 35 | } |
36 | let text = std::fs::read_to_string(e.path()).unwrap(); | 36 | let text = std::fs::read_to_string(e.path()).unwrap(); |
37 | if text.contains("TODO") { | 37 | if text.contains("TODO") || text.contains("TOOD") { |
38 | panic!( | 38 | panic!( |
39 | "\nTODO markers should not be commited to the master branch,\n\ | 39 | "\nTODO markers should not be commited to the master branch,\n\ |
40 | use FIXME instead\n\ | 40 | use FIXME instead\n\ |