diff options
author | Valery Piashchynski <[email protected]> | 2021-06-03 16:59:10 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-06-03 16:59:10 +0300 |
commit | 063703e96e5f7cee59139e98d446d5577fb5c224 (patch) | |
tree | e669d08cbbafaa5d809bfb870e874d3de4683dad /tests/plugins/http/http_plugin_test.go | |
parent | 62bbde7936109d18bf1f727974719804dad4c105 (diff) |
- Add internal_error_code option
- Update tests
Signed-off-by: Valery Piashchynski <[email protected]>
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) |