diff options
Diffstat (limited to 'tests/plugins/http/http_plugin_test.go')
-rw-r--r-- | tests/plugins/http/http_plugin_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/plugins/http/http_plugin_test.go b/tests/plugins/http/http_plugin_test.go index f8044c97..a1fc94ec 100644 --- a/tests/plugins/http/http_plugin_test.go +++ b/tests/plugins/http/http_plugin_test.go @@ -2208,7 +2208,7 @@ func echoIssue659(t *testing.T) { b, err := ioutil.ReadAll(r.Body) assert.NoError(t, err) assert.Empty(t, b) - assert.Equal(t, 500, r.StatusCode) + assert.Equal(t, 444, r.StatusCode) err = r.Body.Close() assert.NoError(t, err) |