From 4c188eae1098bfd0a5d4b466657526a0e7a84d15 Mon Sep 17 00:00:00 2001 From: CJ Cullen Date: Thu, 24 Mar 2016 12:58:38 -0700 Subject: [PATCH] Change the extractRT to return a non-nil Response. --- test/e2e/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/util.go b/test/e2e/util.go index e32fb2b42bd..43c528d02c3 100644 --- a/test/e2e/util.go +++ b/test/e2e/util.go @@ -3235,7 +3235,7 @@ type extractRT struct { func (rt *extractRT) RoundTrip(req *http.Request) (*http.Response, error) { rt.Header = req.Header - return nil, nil + return &http.Response{}, nil } // headersForConfig extracts any http client logic necessary for the provided