summaryrefslogtreecommitdiffstats
path: root/client/go/cmd/status_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/go/cmd/status_test.go')
-rw-r--r--client/go/cmd/status_test.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/client/go/cmd/status_test.go b/client/go/cmd/status_test.go
index 0c1c8e4e3a7..757ef5f3b06 100644
--- a/client/go/cmd/status_test.go
+++ b/client/go/cmd/status_test.go
@@ -1,4 +1,4 @@
-// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// status command tests
// Author: bratseth
@@ -78,8 +78,11 @@ func assertDocumentStatus(target string, args []string, t *testing.T) {
func assertQueryStatusError(target string, args []string, t *testing.T) {
client := &mockHttpClient{}
client.NextStatus(500)
+ cmd := []string{"status", "container"}
+ cmd = append(cmd, args...)
+ _, outErr := execute(command{args: cmd}, t, client)
assert.Equal(t,
- "Container (query API) at "+target+" is not ready\nStatus 500\n",
- executeCommand(t, client, []string{"status", "container"}, args),
+ "Error: Container (query API) at "+target+" is not ready\nStatus 500\n",
+ outErr,
"vespa status container")
}