File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 11# cargo-mutants changelog
22
3+ ## 25.3.1 2025-08-10
4+
5+ - Fixed: cargo-mutants' own tests were failing on nightly due to a change in the format of messages emitted by tests.
6+
37## 25.3.0 2025-08-10
48
59- New: A specific clearer error if a valid non-empty diff changes no Rust source files, and so matches no mutants. Thanks to @brunoerg .
Original file line number Diff line number Diff line change @@ -618,7 +618,7 @@ fn already_failing_tests_are_detected_before_running_mutants() {
618618 . stdout (
619619 predicate:: str:: contains ( "running 1 test\n test test_factorial ... FAILED" )
620620 . normalize ( )
621- . and ( predicate:: str:: contains ( "thread 'test_factorial' panicked " ) )
621+ . and ( predicate:: str:: contains ( "assertion `left == right` failed " ) )
622622 . and ( predicate:: str:: contains ( "72" ) ) // the failing value should be in the output
623623 . and ( predicate:: str:: contains ( "lib.rs:11:5" ) )
624624 . and (
You can’t perform that action at this time.
0 commit comments