From 2602b22bc1402c66c7544b50a53c31e6257f5f88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20Luk=C5=A1a?= Date: Thu, 31 Oct 2024 18:01:51 +0100 Subject: [PATCH] Fix log line in e2e_utils.go (#462) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marko Lukša --- tests/e2e/util/common/e2e_utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/util/common/e2e_utils.go b/tests/e2e/util/common/e2e_utils.go index b513452ee..eb1423cc8 100644 --- a/tests/e2e/util/common/e2e_utils.go +++ b/tests/e2e/util/common/e2e_utils.go @@ -134,7 +134,7 @@ func LogDebugInfo(k kubectl.Kubectl) { // TODO: Add the creation of file with this information to be attached to the test report GinkgoWriter.Println() - GinkgoWriter.Println("The test run has failures and the debug information is as follows from cluster: %q:", k.GetClusterName()) + GinkgoWriter.Printf("The test run has failures and the debug information is as follows from cluster: %q:\n", k.GetClusterName()) GinkgoWriter.Println("=========================================================") logOperatorDebugInfo(k) GinkgoWriter.Println("=========================================================")