aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2021-05-31 18:20:30 +0100
committerAleksey Kladov <[email protected]>2021-05-31 18:20:30 +0100
commitee51bf04beee6d7fdc87ada039e5262abca271bb (patch)
treeca9ba9084fd9c66fdcd83de75247895f581c7214
parent020610f4539f5d553179e0b4dae46cae9db93e41 (diff)
minor: remove debug print
-rw-r--r--crates/syntax/src/tests.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/syntax/src/tests.rs b/crates/syntax/src/tests.rs
index ba0ccfaed..45f3c800f 100644
--- a/crates/syntax/src/tests.rs
+++ b/crates/syntax/src/tests.rs
@@ -145,7 +145,6 @@ fn parser_fuzz_tests() {
145fn reparse_fuzz_tests() { 145fn reparse_fuzz_tests() {
146 for (_, text) in collect_rust_files(&test_data_dir(), &["reparse/fuzz-failures"]) { 146 for (_, text) in collect_rust_files(&test_data_dir(), &["reparse/fuzz-failures"]) {
147 let check = fuzz::CheckReparse::from_data(text.as_bytes()).unwrap(); 147 let check = fuzz::CheckReparse::from_data(text.as_bytes()).unwrap();
148 println!("{:?}", check);
149 check.run(); 148 check.run();
150 } 149 }
151} 150}