diff --git a/tests/custom-panic/tests/integration.rs b/tests/custom-panic/tests/integration.rs index 455c514..d1264c8 100644 --- a/tests/custom-panic/tests/integration.rs +++ b/tests/custom-panic/tests/integration.rs @@ -3,7 +3,7 @@ fn release() { snapbox::cmd::Command::new(snapbox::cmd::cargo_bin!("custom-panic-test")) .assert() - .stderr_eq_(snapbox::str![[r#" + .stderr_eq(snapbox::str![[r#" Well, this is embarrassing. custom-panic-test had a problem and crashed. To help us diagnose the problem you can send us a crash report. @@ -29,7 +29,7 @@ fn release() { fn debug() { snapbox::cmd::Command::new(snapbox::cmd::cargo_bin!("custom-panic-test")) .assert() - .stderr_eq_(snapbox::str![[r#" + .stderr_eq(snapbox::str![[r#" thread 'main' panicked at tests/custom-panic/src/main.rs:11:5: OMG EVERYTHING IS ON FIRE!!! note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace diff --git a/tests/single-panic/tests/integration.rs b/tests/single-panic/tests/integration.rs index 84b6fdd..ee92865 100644 --- a/tests/single-panic/tests/integration.rs +++ b/tests/single-panic/tests/integration.rs @@ -3,7 +3,7 @@ fn release() { snapbox::cmd::Command::new(snapbox::cmd::cargo_bin!("single-panic-test")) .assert() - .stderr_eq_(snapbox::str![[r#" + .stderr_eq(snapbox::str![[r#" Well, this is embarrassing. single-panic-test had a problem and crashed. To help us diagnose the problem you can send us a crash report. @@ -24,7 +24,7 @@ fn release() { fn debug() { snapbox::cmd::Command::new(snapbox::cmd::cargo_bin!("single-panic-test")) .assert() - .stderr_eq_(snapbox::str![[r#" + .stderr_eq(snapbox::str![[r#" thread 'main' panicked at tests/single-panic/src/main.rs:7:5: OMG EVERYTHING IS ON FIRE!!! note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace