From b10c45c1d18886af42e474999a140c5a8a11c40f Mon Sep 17 00:00:00 2001 From: MohammadReza Palide Date: Thu, 1 Feb 2024 13:14:04 +0330 Subject: [PATCH] fix sd address for test 2 --- internal/integration/env_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/integration/env_test.go b/internal/integration/env_test.go index 60b52b37..934d727f 100644 --- a/internal/integration/env_test.go +++ b/internal/integration/env_test.go @@ -377,7 +377,7 @@ func (env *TestEnv) visorTpExec(cmd string) ([]*skyvisor.TransportSummary, error } func (env *TestEnv) VPNList(visor string) ([]servicedisc.Service, error) { - cmd := fmt.Sprintf("/release/skywire-cli vpn --rpc %v:3435 list --sturl http://service-discovery:9098 --json", visor) + cmd := fmt.Sprintf("/release/skywire-cli vpn --rpc %v:3435 list --sdurl http://service-discovery:9098 --json", visor) cliOutput := struct { Output []servicedisc.Service `json:"output,omitempty"` Err *string `json:"error,omitempty"`