From 1b6a962e709925654882e70260f5623da72b785f Mon Sep 17 00:00:00 2001
From: Ethan Koenig <ethantkoenig@gmail.com>
Date: Tue, 31 Oct 2017 22:54:24 -0700
Subject: [PATCH] Include HTTP method in test error message (#2815)

---
 integrations/integration_test.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/integrations/integration_test.go b/integrations/integration_test.go
index 4573a9cb13..55014b5a41 100644
--- a/integrations/integration_test.go
+++ b/integrations/integration_test.go
@@ -284,7 +284,7 @@ func MakeRequest(t testing.TB, req *http.Request, expectedStatus int) *TestRespo
 	mac.ServeHTTP(respWriter, req)
 	if expectedStatus != NoExpectedStatus {
 		assert.EqualValues(t, expectedStatus, respWriter.HeaderCode,
-			"Request URL: %s", req.URL.String())
+			"Request: %s %s", req.Method, req.URL.String())
 	}
 	return &TestResponse{
 		HeaderCode: respWriter.HeaderCode,