Skip to content

Commit 535e65e

Browse files
committed
fix: assert test exit code
1 parent cb93d5b commit 535e65e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/aplusb.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,6 @@ fn it_should_not_run_re2() {
252252
fn it_should_not_run_assert() {
253253
common::setup();
254254
let result = run_fail_cpp("assert.cpp", 1000, 262144);
255-
assert_eq!(*result.status(), Some(0));
255+
assert_eq!(*result.status(), None);
256256
assert_eq!(*result.signal(), Some(Signal::SIGABRT));
257257
}

0 commit comments

Comments
 (0)