From 1ff17a3fa1643aa7c90a256f83f93e77556fe4df Mon Sep 17 00:00:00 2001 From: timothy-spencer Date: Mon, 25 Mar 2019 10:10:07 -0700 Subject: [PATCH] travis ci tests had a temporary failure, so this is to get it to retest --- http_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http_test.go b/http_test.go index 9b663de..8495fa8 100644 --- a/http_test.go +++ b/http_test.go @@ -47,7 +47,7 @@ func TestGCPHealthcheckNotHealthcheck(t *testing.T) { h := gcpHealthcheck(http.HandlerFunc(handler)) rw := httptest.NewRecorder() - r, _ := http.NewRequest("GET", "/NOT_any_check", nil) + r, _ := http.NewRequest("GET", "/not_any_check", nil) r.RemoteAddr = "127.0.0.1" r.Host = "test-server" h.ServeHTTP(rw, r)