aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-05-31 18:22:09 +0100
committerGitHub <[email protected]>2021-05-31 18:22:09 +0100
commit7c1d8ca63510bb719fd91bbf38692e45b19c04d6 (patch)
tree167c1afec01d58ce00822474a0677d74542f970d
parent4cb4b23dc6dd593bc3eacf1a47a0af0d7e7062c1 (diff)
parentee51bf04beee6d7fdc87ada039e5262abca271bb (diff)
Merge #9088
9088: minor: remove debug print r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
-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}