diff options
Diffstat (limited to 'plugins/http')
-rw-r--r-- | plugins/http/tests/configs/.rr-env.yaml | 2 | ||||
-rw-r--r-- | plugins/http/tests/http_test.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/http/tests/configs/.rr-env.yaml b/plugins/http/tests/configs/.rr-env.yaml index ed7def18..c9fdc798 100644 --- a/plugins/http/tests/configs/.rr-env.yaml +++ b/plugins/http/tests/configs/.rr-env.yaml @@ -13,7 +13,7 @@ server: http: debug: true - address: 127.0.0.1:8084 + address: 127.0.0.1:12084 maxRequestSize: 1024 middleware: [ "" ] env: diff --git a/plugins/http/tests/http_test.go b/plugins/http/tests/http_test.go index 5f78a3d6..16164667 100644 --- a/plugins/http/tests/http_test.go +++ b/plugins/http/tests/http_test.go @@ -1027,7 +1027,7 @@ func TestHttpEnvVariables(t *testing.T) { } func envVarsTest(t *testing.T) { - req, err := http.NewRequest("GET", "http://localhost:8084", nil) + req, err := http.NewRequest("GET", "http://localhost:12084", nil) assert.NoError(t, err) r, err := http.DefaultClient.Do(req) |