diff options
author | Valery Piashchynski <[email protected]> | 2020-11-26 13:33:54 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-11-26 13:33:54 +0300 |
commit | 09f9a0d001f1249af24373d9f207d485e4a9abb2 (patch) | |
tree | 4b0cd1bbdc3480f34a08fbbfdb9ea268dacd7193 /plugins/http/tests/http_test.go | |
parent | c765c70c1ff628044ccae15a24d0e200bb9304cb (diff) |
Update ports in the configs
Diffstat (limited to 'plugins/http/tests/http_test.go')
-rw-r--r-- | plugins/http/tests/http_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/http/tests/http_test.go b/plugins/http/tests/http_test.go index 28461950..5f78a3d6 100644 --- a/plugins/http/tests/http_test.go +++ b/plugins/http/tests/http_test.go @@ -173,7 +173,7 @@ func TestHTTPInformerReset(t *testing.T) { } func echoHTTP(t *testing.T) { - req, err := http.NewRequest("GET", "http://localhost:8084?hello=world", nil) + req, err := http.NewRequest("GET", "http://localhost:10084?hello=world", nil) assert.NoError(t, err) r, err := http.DefaultClient.Do(req) @@ -219,7 +219,7 @@ func informerTest(t *testing.T) { err = client.Call("informer.Workers", "http", &list) assert.NoError(t, err) - assert.Len(t, list.Workers, 4) + assert.Len(t, list.Workers, 2) } func TestSSL(t *testing.T) { |