parser/gotest: Fix test error messages in report_builder_test.go

This commit is contained in:
Joël Stemmer 2022-09-17 00:03:11 +01:00
parent 7b10b42854
commit 77475bf23b

View File

@ -121,7 +121,7 @@ func TestReport(t *testing.T) {
}
got := rb.Build()
if diff := cmp.Diff(want, got); diff != "" {
t.Errorf("FromEvents report incorrect, diff (-want, +got):\n%v", diff)
t.Errorf("Incorrect report created, diff (-want, +got):\n%v", diff)
}
}
@ -181,7 +181,7 @@ func TestBuildReportMultiplePackages(t *testing.T) {
}
got := rb.Build()
if diff := cmp.Diff(want, got); diff != "" {
t.Errorf("FromEvents report incorrect, diff (-want, +got):\n%v", diff)
t.Errorf("Incorrect report created, diff (-want, +got):\n%v", diff)
}
}