diff options
author | Jakob Unterwurzacher | 2018-03-05 23:06:27 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2018-03-05 23:06:27 +0100 |
commit | 35192abb57636a8c4d6a6419aa6fd43f04ac2385 (patch) | |
tree | 199d892c5aa95eb843e6f87edc89888cfa4c4184 | |
parent | 86e60f1be20cb2db53e5e787790e5397a2a86495 (diff) |
test_helpers: add missing newline
-rw-r--r-- | tests/test_helpers/helpers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_helpers/helpers.go b/tests/test_helpers/helpers.go index 47517a6..3beb10b 100644 --- a/tests/test_helpers/helpers.go +++ b/tests/test_helpers/helpers.go @@ -178,7 +178,7 @@ func Mount(c string, p string, showOutput bool, extraArgs ...string) error { func MountOrExit(c string, p string, extraArgs ...string) { err := Mount(c, p, true, extraArgs...) if err != nil { - fmt.Printf("mount failed: %v", err) + fmt.Printf("mount failed: %v\n", err) os.Exit(1) } } |