We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1639ae9 commit f281351Copy full SHA for f281351
pkg/testcoverage/report_test.go
@@ -94,7 +94,7 @@ func Test_ReportForHuman(t *testing.T) {
94
result := Analyze(cfg, stats, stats)
95
ReportForHuman(buf, result)
96
97
- assert.Contains(t, buf.String(), "Current tests coverage has not changed")
+ assert.Contains(t, buf.String(), "No coverage changes in any files compared to the base")
98
})
99
100
t.Run("diff - has change", func(t *testing.T) {
@@ -114,7 +114,7 @@ func Test_ReportForHuman(t *testing.T) {
114
115
116
assert.Contains(t, buf.String(),
117
- "Current tests coverage has changed with 2 lines missing coverage",
+ "Test coverage has changed in the current files, with 2 lines missing coverage",
118
)
119
120
}
0 commit comments