aboutsummaryrefslogtreecommitdiff
path: root/crates/tools/src
diff options
context:
space:
mode:
authorDJMcNab <[email protected]>2018-12-20 17:29:26 +0000
committerDJMcNab <[email protected]>2018-12-20 17:29:26 +0000
commit0ffba1e8965a75d2c07a053a0803a186fb7fa1f7 (patch)
treeeb26660d9da1e3c93c0da67faa9e6c4acb982998 /crates/tools/src
parent134fe4f566d94fd4ca91c6417fab0ae7b3e4275f (diff)
Fix broken test is deleted comment
Diffstat (limited to 'crates/tools/src')
-rw-r--r--crates/tools/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/tools/src/main.rs b/crates/tools/src/main.rs
index 0e54cadda..7edf8f52d 100644
--- a/crates/tools/src/main.rs
+++ b/crates/tools/src/main.rs
@@ -57,7 +57,7 @@ fn gen_tests(mode: Mode) -> Result<()> {
57 // ok is never actually read, but it needs to be specified to create a Test in existing_tests 57 // ok is never actually read, but it needs to be specified to create a Test in existing_tests
58 let existing = existing_tests(&tests_dir, true)?; 58 let existing = existing_tests(&tests_dir, true)?;
59 for t in existing.keys().filter(|&t| !tests.contains_key(t)) { 59 for t in existing.keys().filter(|&t| !tests.contains_key(t)) {
60 // panic!("Test is deleted: {}", t); 60 panic!("Test is deleted: {}", t);
61 } 61 }
62 62
63 let mut new_idx = existing.len() + 1; 63 let mut new_idx = existing.len() + 1;