Skip to content

Commit

Permalink
fix: do not println
Browse files Browse the repository at this point in the history
  • Loading branch information
dnbln committed Feb 3, 2025
1 parent 004a80d commit 340993b
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,6 @@ fn run_test(test: ParserTestSingleFolder) -> miette::Result<()> {

visitor.visit_mod_id(mod_def);

println!("Original:");
println!("{}", orig);
println!("Result:");
println!("{}", visitor.buffer);

if !visitor.buffer.trim().is_empty() {
let old = orig.char_indices().collect::<Vec<_>>();
let new = visitor.buffer.chars().collect::<Vec<_>>();
Expand Down

0 comments on commit 340993b

Please sign in to comment.