Browse Source

change that verbosity comparison to > 2 (#1680)

pull/1682/head
praveenbakkal 3 years ago committed by GitHub
parent
commit
a79fe12f24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      boa_tester/src/exec/mod.rs

2
boa_tester/src/exec/mod.rs

@ -252,7 +252,7 @@ impl Test {
(TestOutcomeResult::Ignored, String::new())
};
if verbose > 1 {
if verbose > 2 {
println!("Result text:");
println!("{}", result_text);
println!();

Loading…
Cancel
Save