aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
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 {