From 0ffba1e8965a75d2c07a053a0803a186fb7fa1f7 Mon Sep 17 00:00:00 2001 From: DJMcNab <36049421+DJMcNab@users.noreply.github.com> Date: Thu, 20 Dec 2018 17:29:26 +0000 Subject: Fix broken test is deleted comment --- crates/tools/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates') 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<()> { // 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; -- cgit v1.2.3