diff --git a/command/operator_debug_test.go b/command/operator_debug_test.go index 72c543cfc4a..0efd47dc4c1 100644 --- a/command/operator_debug_test.go +++ b/command/operator_debug_test.go @@ -164,10 +164,11 @@ func TestDebug_NodeClass(t *testing.T) { args: []string{"-address", url, "-duration", "250ms", "-server-id", "all", "-node-id", "all", "-node-class", "clienta", "-max-nodes", "2"}, expectedCode: 0, expectedOutputs: []string{ - "Starting debugger", - "Created debug archive", + "Servers: (1/1)", + "Clients: (2/3)", "Max node count reached (2)", "Node Class: clienta", + "Created debug archive", }, expectedError: "", }, @@ -176,9 +177,10 @@ func TestDebug_NodeClass(t *testing.T) { args: []string{"-address", url, "-duration", "250ms", "-server-id", "all", "-node-id", "all", "-node-class", "clientb", "-max-nodes", "2"}, expectedCode: 0, expectedOutputs: []string{ - "Starting debugger", - "Created debug archive", + "Servers: (1/1)", + "Clients: (1/3)", "Node Class: clientb", + "Created debug archive", }, expectedError: "", },