From c3c8c7160b494a1d647cba2bb60a85c5c6dab876 Mon Sep 17 00:00:00 2001 From: Mohammed Date: Mon, 26 Aug 2024 03:41:27 +0000 Subject: [PATCH] fix issue on VisorTpAdd 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 478ee89f..83990770 100644 --- a/internal/integration/env_test.go +++ b/internal/integration/env_test.go @@ -349,7 +349,7 @@ func (env *TestEnv) VisorTpAddDefault(visor string, pk string) (*skyvisor.Transp } func (env *TestEnv) VisorTpAdd(visor, pk string, tpType network.Type) (*skyvisor.TransportSummary, error) { - cmd := fmt.Sprintf("/release/skywire cli --rpc %v:3435 tp add --rpk %v --type %s --sdurl http://localhost:9098 --json", visor, pk, tpType) + cmd := fmt.Sprintf("/release/skywire cli --rpc %v:3435 tp add --type %s --sdurl http://localhost:9098 --json", visor, pk, tpType) output, err := env.visorTpExec(cmd) if err != nil { return nil, err