From 2c9c706847a63cf500cca301dd62e6d4ca83c8f3 Mon Sep 17 00:00:00 2001 From: Stefan Pfaffel Date: Sat, 28 Dec 2024 20:38:33 +0100 Subject: [PATCH] tests: add missing new line to print statement --- .../concurrency/without-permission/concurrent-file-reads.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-e2e/concurrency/without-permission/concurrent-file-reads.go b/test-e2e/concurrency/without-permission/concurrent-file-reads.go index aa98dfc..2eb725b 100644 --- a/test-e2e/concurrency/without-permission/concurrent-file-reads.go +++ b/test-e2e/concurrency/without-permission/concurrent-file-reads.go @@ -83,7 +83,7 @@ func main() { fmt.Println("Good times. Goodbye.") os.Exit(0) } else { - fmt.Printf("Returning exit code 1") + fmt.Println("Returning exit code 1") os.Exit(1) } }