Fix testbench ignite test: match new log output.

This commit is contained in:
Sergio Benitez 2024-08-21 02:21:26 -07:00
parent e889c2628a
commit dbeba45b36
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ fn test_ignite_failure() -> Result<()> {
};
if let Err(Error::Liftoff(stdout, _)) = server {
assert!(stdout.contains("ignition failure"));
assert!(stdout.contains("failed ignite"));
assert!(stdout.contains("FailNow"));
} else {
panic!("unexpected result: {server:#?}");