Skip to content

Commit

Permalink
change that verbosity comparison to > 2 (#1680)
Browse files Browse the repository at this point in the history
  • Loading branch information
praveenbakkal authored Oct 21, 2021
1 parent 8891bb7 commit a79fe12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boa_tester/src/exec/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ impl Test {
(TestOutcomeResult::Ignored, String::new())
};

if verbose > 1 {
if verbose > 2 {
println!("Result text:");
println!("{}", result_text);
println!();
Expand Down

0 comments on commit a79fe12

Please sign in to comment.