aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;