From ec11aea880a8aaaab65e79bde49cb3d1280be073 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 5 Jul 2023 12:24:58 +0200 Subject: [PATCH] pkg/jsonmessage: use string-literals for easier grep'ing Signed-off-by: Sebastiaan van Stijn --- pkg/jsonmessage/jsonmessage_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/jsonmessage/jsonmessage_test.go b/pkg/jsonmessage/jsonmessage_test.go index 3aafdaf140..3e8166b44f 100644 --- a/pkg/jsonmessage/jsonmessage_test.go +++ b/pkg/jsonmessage/jsonmessage_test.go @@ -241,22 +241,22 @@ func TestDisplayJSONMessagesStream(t *testing.T) { "", }, // Without progress & ID - "{ \"status\": \"status\" }": { + `{ "status": "status" }`: { "status\n", "status\n", }, // Without progress, with ID - "{ \"id\": \"ID\",\"status\": \"status\" }": { + `{ "id": "ID","status": "status" }`: { "ID: status\n", "ID: status\n", }, // With progress - "{ \"id\": \"ID\", \"status\": \"status\", \"progress\": \"ProgressMessage\" }": { + `{ "id": "ID", "status": "status", "progress": "ProgressMessage" }`: { "ID: status ProgressMessage", fmt.Sprintf("\n%c[%dAID: status ProgressMessage%c[%dB", 27, 1, 27, 1), }, // With progressDetail - "{ \"id\": \"ID\", \"status\": \"status\", \"progressDetail\": { \"Current\": 1} }": { + `{ "id": "ID", "status": "status", "progressDetail": { "Current": 1} }`: { "", // progressbar is disabled in non-terminal fmt.Sprintf("\n%c[%dA%c[2K\rID: status 1B\r%c[%dB", 27, 1, 27, 27, 1), },