mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
parser/gotest: Fix test error messages in report_builder_test.go
This commit is contained in:
parent
7b10b42854
commit
77475bf23b
@ -121,7 +121,7 @@ func TestReport(t *testing.T) {
|
|||||||
}
|
}
|
||||||
got := rb.Build()
|
got := rb.Build()
|
||||||
if diff := cmp.Diff(want, got); diff != "" {
|
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()
|
got := rb.Build()
|
||||||
if diff := cmp.Diff(want, got); diff != "" {
|
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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user