aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorHÃ¥kon Hallingstad <hakon@yahooinc.com>2021-12-06 15:37:53 +0100
committerGitHub <noreply@github.com>2021-12-06 15:37:53 +0100
commit9755c05c5ff1f14639795613a211eaf9a3b66fe0 (patch)
treeb279417aca1bdbff60d5e40b3431ffb4a900ef3a /client
parente412598fc3cf3945e61885055d5fcba2bef4c5b6 (diff)
parent1fe2ba714dfe9ba8ecaf4d9a57daa3fb33e4ce64 (diff)
Merge pull request #20380 from vespa-engine/jonmv/colorise-vespa-test-output
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 {