Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
Remove empty string literal from println
Browse files Browse the repository at this point in the history
clippy emits various warnings of form:

  warning: empty string literal in `println!`

As suggested, remove the double quotes.
  • Loading branch information
tcharding committed May 31, 2024
1 parent 6ca835d commit f61b7f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration_test/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ fn main() {
run_test!(test_get_block_hash_named);

// Print results
println!("");
println!("");
println!();
println!();
println!("Summary:");
let mut error_count = 0;
for (name, success) in RESULTS.lock().unwrap().iter() {
Expand All @@ -131,7 +131,7 @@ fn main() {
}
}

println!("");
println!();

if error_count == 0 {
println!("All tests succesful!");
Expand Down

0 comments on commit f61b7f8

Please sign in to comment.