summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJakob Unterwurzacher2018-03-05 23:06:27 +0100
committerJakob Unterwurzacher2018-03-05 23:06:27 +0100
commit35192abb57636a8c4d6a6419aa6fd43f04ac2385 (patch)
tree199d892c5aa95eb843e6f87edc89888cfa4c4184 /tests
parent86e60f1be20cb2db53e5e787790e5397a2a86495 (diff)
test_helpers: add missing newline
Diffstat (limited to 'tests')
-rw-r--r--tests/test_helpers/helpers.go2
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)
}
}