From 1fe2ba714dfe9ba8ecaf4d9a57daa3fb33e4ce64 Mon Sep 17 00:00:00 2001 From: Jon Marius Venstad Date: Mon, 6 Dec 2021 15:28:13 +0100 Subject: Always show step number --- client/go/cmd/test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client/go/cmd') diff --git a/client/go/cmd/test.go b/client/go/cmd/test.go index f323a0a76cc..b8e028ee763 100644 --- a/client/go/cmd/test.go +++ b/client/go/cmd/test.go @@ -134,7 +134,7 @@ func runTest(testPath string, target vespa.Target, dryRun bool) string { for i, step := range test.Steps { stepName := fmt.Sprintf("Step %d", i+1) if step.Name != "" { - stepName = fmt.Sprintf("Step: %s", step.Name) + stepName += ": " + step.Name } failure, longFailure, err := verify(step, filepath.Dir(testPath), test.Defaults.Cluster, defaultParameters, target, dryRun) if err != nil { -- cgit v1.2.3