1
Fork 0

Simplified two printlns picked out by clippy

This commit is contained in:
Nicholas-Baron 2021-10-09 12:12:13 -07:00
parent 0e2a782463
commit d2a522f423

View file

@ -2067,9 +2067,9 @@ impl<'test> TestCx<'test> {
fn maybe_dump_to_stdout(&self, out: &str, err: &str) {
if self.config.verbose {
println!("------{}------------------------------", "stdout");
println!("------stdout------------------------------");
println!("{}", out);
println!("------{}------------------------------", "stderr");
println!("------stderr------------------------------");
println!("{}", err);
println!("------------------------------------------");
}