summaryrefslogtreecommitdiff
path: root/tests/plugins/config/config_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/plugins/config/config_test.go')
-rwxr-xr-xtests/plugins/config/config_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/plugins/config/config_test.go b/tests/plugins/config/config_test.go
index 79de2f59..b6063cec 100755
--- a/tests/plugins/config/config_test.go
+++ b/tests/plugins/config/config_test.go
@@ -97,7 +97,7 @@ func TestConfigOverwriteValid(t *testing.T) {
vp := &config.Viper{}
vp.Path = "configs/.rr.yaml"
vp.Prefix = "rr"
- vp.Flags = []string{"rpc.listen=tcp://localhost:6061"}
+ vp.Flags = []string{"rpc.listen=tcp://localhost:36643"}
err = container.RegisterAll(
&logger.ZapLogger{},
@@ -143,7 +143,7 @@ func TestConfigEnvVariables(t *testing.T) {
t.Fatal(err)
}
- err = os.Setenv("SUPER_RPC_ENV", "tcp://localhost:6061")
+ err = os.Setenv("SUPER_RPC_ENV", "tcp://localhost:36643")
assert.NoError(t, err)
vp := &config.Viper{}