aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2021-12-06 15:28:13 +0100
committerJon Marius Venstad <venstad@gmail.com>2021-12-06 15:28:13 +0100
commit1fe2ba714dfe9ba8ecaf4d9a57daa3fb33e4ce64 (patch)
tree409b124afd5c68e8adb673cf8c56e17c0f36edb8 /client
parentec530033f1e144b48eccc6c935b2e909d7abaf12 (diff)
Always show step number
Diffstat (limited to 'client')
-rw-r--r--client/go/cmd/test.go2
1 files changed, 1 insertions, 1 deletions
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 {