test_helpers: add missing newline

This commit is contained in:
Jakob Unterwurzacher 2018-03-05 23:06:27 +01:00
parent 86e60f1be2
commit 35192abb57
1 changed files with 1 additions and 1 deletions

View File

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