Skip to content

Commit

Permalink
Reword error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jedel1043 committed Mar 17, 2023
1 parent ae58a61 commit 573efe4
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 @@ -201,7 +201,7 @@ 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 didn't call `print`".to_string())
return (false, "async test did not print \"Test262:AsyncTestComplete\"".to_string())
}
_ => {}
}
Expand Down

0 comments on commit 573efe4

Please sign in to comment.