Print number of found test diffs

This commit is contained in:
Jakub Beránek 2025-03-15 09:32:57 +01:00
parent e757deab23
commit 413fd52ea9

View file

@ -244,6 +244,7 @@ fn report_test_diffs(diff: AggregatedTestDiffs) {
println!("No test diffs found");
return;
}
println!("\n{} test {} found\n", diff.diffs.len(), pluralize("difference", diff.diffs.len()));
fn format_outcome(outcome: &TestOutcome) -> String {
match outcome {