summaryrefslogtreecommitdiffstats
path: root/client/go/cmd/test.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/go/cmd/test.go')
-rw-r--r--client/go/cmd/test.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/client/go/cmd/test.go b/client/go/cmd/test.go
index acb6231623e..1c452acd7f6 100644
--- a/client/go/cmd/test.go
+++ b/client/go/cmd/test.go
@@ -77,7 +77,7 @@ func runTests(cli *CLI, rootPath string, dryRun bool) (int, []string, error) {
if err != nil {
return 0, nil, errHint(err, "See https://docs.vespa.ai/en/reference/testing")
}
- context := testContext{testsPath: rootPath, dryRun: dryRun, cli: cli, zone: cli.flags.zone}
+ context := testContext{testsPath: rootPath, dryRun: dryRun, cli: cli}
previousFailed := false
for _, test := range tests {
if !test.IsDir() && filepath.Ext(test.Name()) == ".json" {
@@ -469,7 +469,6 @@ type response struct {
type testContext struct {
cli *CLI
- zone string
lazyTarget vespa.Target
testsPath string
dryRun bool