test: Improve error readability
This commit is contained in:
		| @ -177,7 +177,7 @@ func TestAlertProvider_buildRequestBody(t *testing.T) { | ||||
| 			b, _ := json.Marshal(body) | ||||
| 			e, _ := json.Marshal(scenario.ExpectedBody) | ||||
| 			if body != scenario.ExpectedBody { | ||||
| 				t.Errorf("expected %s, got %s", e, b) | ||||
| 				t.Errorf("expected:\n%s\ngot:\n%s", e, b) | ||||
| 			} | ||||
| 			out := make(map[string]interface{}) | ||||
| 			if err := json.Unmarshal([]byte(body), &out); err != nil { | ||||
|  | ||||
| @ -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 { | ||||
|  | ||||
| @ -93,7 +93,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(body, &out); err != nil { | ||||
|  | ||||
		Reference in New Issue
	
	Block a user