From c134bfe9ebcafef5619ca4d908ff874e1703faa2 Mon Sep 17 00:00:00 2001 From: huweiwen Date: Sun, 3 Mar 2024 23:46:22 +0800 Subject: [PATCH] agnhost/mounttest: add new line to output make the output easier to read. --- test/images/agnhost/VERSION | 2 +- test/images/agnhost/mounttest/mt.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/images/agnhost/VERSION b/test/images/agnhost/VERSION index 5d8213c95e7..1c593e17dae 100644 --- a/test/images/agnhost/VERSION +++ b/test/images/agnhost/VERSION @@ -1 +1 @@ -2.47 +2.48 diff --git a/test/images/agnhost/mounttest/mt.go b/test/images/agnhost/mounttest/mt.go index 5629e0209e5..0a4cf87735e 100644 --- a/test/images/agnhost/mounttest/mt.go +++ b/test/images/agnhost/mounttest/mt.go @@ -195,7 +195,7 @@ func testFileContent(filePath string, retryDuration int, breakOnExpectedContent fmt.Printf("content of file %q: %v\n", filePath, string(contentBytes)) if breakOnExpectedContent { if string(contentBytes) != initialContent { - fmt.Printf("Unexpected content. Expected: %s. Retrying", initialContent) + fmt.Printf("Unexpected content. Expected: %s. Retrying\n", initialContent) continue } break