From 344d58e82debc94d1be4c47304f43b602ffef669 Mon Sep 17 00:00:00 2001 From: MohammadReza Palide Date: Thu, 1 Feb 2024 12:21:04 +0330 Subject: [PATCH] fix vpn-test after recent changes on skywire vpn commands --- 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 c7a2df29..7c26a412 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 -n 1 --json", visor) + cmd := fmt.Sprintf("/release/skywire-cli vpn --rpc %v:3435 list --json", visor) cliOutput := struct { Output []servicedisc.Service `json:"output,omitempty"` Err *string `json:"error,omitempty"`