diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-09-26 18:06:53 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-09-28 09:41:25 +0200 |
| commit | f9bcf3095b646003bd2ec001cb93ba17192ad674 (patch) | |
| tree | bad9afa9c26cc7423fb1fcac8fc71d2103e8cbb7 /pkg | |
| parent | 3bbd2f185f56d7677df2bce8937cba4f3a04ece7 (diff) | |
pkg/cover: fix error message capitalization in tests
Follow up to #2074
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/cover/report_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/cover/report_test.go b/pkg/cover/report_test.go index 644476a2f..54eb44937 100644 --- a/pkg/cover/report_test.go +++ b/pkg/cover/report_test.go @@ -198,12 +198,12 @@ func checkCSVReport(t *testing.T, CSVReport []byte) { } if !reflect.DeepEqual(lines[0], csvHeader) { - t.Fatalf("Heading line in CSV doesn't match %v", lines[0]) + t.Fatalf("heading line in CSV doesn't match %v", lines[0]) } for _, line := range lines { if line[1] == "main" && line[2] != "1" && line[3] != "1" { - t.Fatalf("Function coverage percentage doesn't match %v vs. %v", line[2], "100") + t.Fatalf("function coverage percentage doesn't match %v vs. %v", line[2], "100") } } } |
