From e9e005dd17f305a41a34eff02f9dddb89eeb4c79 Mon Sep 17 00:00:00 2001 From: Paulin Todev Date: Tue, 20 Aug 2024 14:47:46 +0100 Subject: [PATCH] Fix incorrect log line. --- internal/cmd/integration-tests/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/integration-tests/utils.go b/internal/cmd/integration-tests/utils.go index f683389f3b69..4aba265a4308 100644 --- a/internal/cmd/integration-tests/utils.go +++ b/internal/cmd/integration-tests/utils.go @@ -46,7 +46,7 @@ func executeCommand(command string, args []string, taskDescription string) bool if len(stdoutStr) > 0 { log.Printf("stdout:%s\n", stdoutStr) } else { - log.Fatalf("No stdout was printed from task '%s'\n", taskDescription) + log.Printf("No stdout was printed from task '%s'\n", taskDescription) } return success }