1
Fork 0

Fix whitespace

This commit is contained in:
Florian Bartels 2022-10-06 08:52:36 +02:00
parent 56503460c8
commit 9a97cc8ca5
2 changed files with 5 additions and 3 deletions

View file

@ -99,7 +99,9 @@ fn expect_aborted(status: ExitStatus) {
// If the next assert fails sporadically we might have an issue with parallel crashing apps
assert!(tombstone
.contains(&std::env::current_exe().unwrap().into_os_string().into_string().unwrap()));
assert!(tombstone.contains("signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr deadbaad"));
assert!(tombstone.contains(
"signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr deadbaad"
));
}
}