diff --git a/crates/tools/src/main.rs b/crates/tools/src/main.rs index 0e54caddaba..7edf8f52d86 100644 --- a/crates/tools/src/main.rs +++ b/crates/tools/src/main.rs @@ -57,7 +57,7 @@ fn gen_tests(mode: Mode) -> Result<()> { // ok is never actually read, but it needs to be specified to create a Test in existing_tests let existing = existing_tests(&tests_dir, true)?; for t in existing.keys().filter(|&t| !tests.contains_key(t)) { - // panic!("Test is deleted: {}", t); + panic!("Test is deleted: {}", t); } let mut new_idx = existing.len() + 1;