From 59ce3253742a96470f93a011b9de3bc0c6c3cb72 Mon Sep 17 00:00:00 2001 From: Seymur Bagirov Date: Sun, 17 Nov 2024 07:10:49 +0400 Subject: [PATCH] chore: remove the print statements from the test case lol --- src/scanner.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/scanner.rs b/src/scanner.rs index c50b85a..e2bc28c 100644 --- a/src/scanner.rs +++ b/src/scanner.rs @@ -171,10 +171,6 @@ mod tests { .map(|x| x.t_type) .collect(); - println!("actual: {:?}", actual_tokens); - - println!("expected: {:?}", expected_tokens); - assert!(do_cols_match(&actual_tokens, &expected_tokens)); } }