Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jedel1043 committed Mar 17, 2023
1 parent 573efe4 commit e146c73
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion boa_tester/src/exec/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,10 @@ impl Test {
match *async_result.inner.borrow() {
UninitResult::Err(ref e) => return (false, format!("Uncaught {e}")),
UninitResult::Uninit if self.flags.contains(TestFlags::ASYNC) => {
return (false, "async test did not print \"Test262:AsyncTestComplete\"".to_string())
return (
false,
"async test did not print \"Test262:AsyncTestComplete\"".to_string(),
)
}
_ => {}
}
Expand Down

0 comments on commit e146c73

Please sign in to comment.