agnhost/mounttest: add new line to output

make the output easier to read.
This commit is contained in:
huweiwen 2024-03-03 23:46:22 +08:00
parent 3086d88dc6
commit c134bfe9eb
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
2.47
2.48

View File

@ -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