diff options
author | Valery Piashchynski <[email protected]> | 2021-02-23 11:16:00 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2021-02-23 11:16:00 +0300 |
commit | 123c5e96132cdc8f78f26c2f31e52b6a7ddc2e91 (patch) | |
tree | 6579eb84bf6726f40c0e759e97465d55e1a3dcc1 /tests/plugins | |
parent | 7dc61c309a34d21630bc1ad53c53211b3dc985de (diff) | |
parent | 3c5a85bf8a0d1c8b8f8f71c215f75b338c4e7510 (diff) |
Merge branch 'master' into rc.4-release
Diffstat (limited to 'tests/plugins')
-rw-r--r-- | tests/plugins/http/http_plugin_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/plugins/http/http_plugin_test.go b/tests/plugins/http/http_plugin_test.go index 0b6fb77a..bca8a2f1 100644 --- a/tests/plugins/http/http_plugin_test.go +++ b/tests/plugins/http/http_plugin_test.go @@ -412,7 +412,7 @@ func fcgiEcho(t *testing.T) { fcgiHandler := gofast.NewHandler( gofast.BasicParamsMap(gofast.BasicSession), - gofast.SimpleClientFactory(fcgiConnFactory, 0), + gofast.SimpleClientFactory(fcgiConnFactory), ) w := httptest.NewRecorder() @@ -684,7 +684,7 @@ func fcgiReqURI(t *testing.T) { fcgiHandler := gofast.NewHandler( gofast.BasicParamsMap(gofast.BasicSession), - gofast.SimpleClientFactory(fcgiConnFactory, 0), + gofast.SimpleClientFactory(fcgiConnFactory), ) w := httptest.NewRecorder() |