Skip to content

Commit 6f214c5

Browse files
committed
Fix pluralization of tests
1 parent 961351c commit 6f214c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ci/citool/src/merge_report.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ fn report_test_changes(mut diffs: Vec<AggregatedTestDiffs>) {
242242
println!(" - {}: {}", test.name, format_diff(&outcome_diff));
243243
}
244244
if extra_tests > 0 {
245-
println!(" - (and {extra_tests} additional {})", pluralize("tests", extra_tests));
245+
println!(" - (and {extra_tests} additional {})", pluralize("test", extra_tests));
246246
}
247247
}
248248

0 commit comments

Comments
 (0)