diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-09-22 21:48:41 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2019-09-22 21:48:41 +0100 |
commit | efcbca95595d31bb4c2c6782530d5a7a64a4191f (patch) | |
tree | 43dfe5d4ddec13ba9eb9bd42862b58a82103d48f /crates/ra_tools/tests/cli.rs | |
parent | 6cc3559daa4358d0ac5d9cac23311544cdf67461 (diff) | |
parent | 43da23401dad3d708b91e61003e8503a61f57c14 (diff) |
Merge #1896
1896: remove obsolete TOOD r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_tools/tests/cli.rs')
-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\ |