test: Improve error readability

This commit is contained in:
TwiN
2022-10-20 17:09:40 -04:00
parent 34f8cd1eca
commit d01a5d418b
3 changed files with 3 additions and 3 deletions

View File

@ -142,7 +142,7 @@ func TestAlertProvider_buildRequestBody(t *testing.T) {
scenario.Resolved,
)
if string(body) != scenario.ExpectedBody {
t.Errorf("expected %s, got %s", scenario.ExpectedBody, body)
t.Errorf("expected:\n%s\ngot:\n%s", scenario.ExpectedBody, body)
}
out := make(map[string]interface{})
if err := json.Unmarshal([]byte(body), &out); err != nil {