Skip to content

Commit 53dc37a

Browse files
committed
upgrade status CLI monitortest: fix workers check
1 parent 1c080bc commit 53dc37a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/monitortests/cli/adm_upgrade/status/workers.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func (w *monitor) workers() *junitapi.JUnitTestCase {
4040
wroteOnce = true
4141
failureOutputBuilder.WriteString(fmt.Sprintf("\n===== %s\n", observed.when.Format(time.RFC3339)))
4242
failureOutputBuilder.WriteString(observed.output.rawOutput)
43-
failureOutputBuilder.WriteString(fmt.Sprintf("=> %s\n", message))
43+
failureOutputBuilder.WriteString(fmt.Sprintf("\n\n=> %s\n", message))
4444
}
4545
}
4646

@@ -64,7 +64,7 @@ func (w *monitor) workers() *junitapi.JUnitTestCase {
6464
name := strings.Split(pool, " ")[0]
6565
_, ok := ws.Nodes[name]
6666
if ok {
67-
fail(fmt.Sprintf("Empty nodes table should not be shown for an empty pool %s", name))
67+
fail(fmt.Sprintf("Nodes table should not be shown for an empty pool %s", name))
6868
}
6969
continue
7070
}

0 commit comments

Comments
 (0)