aboutsummaryrefslogtreecommitdiff
path: root/internal/configfile/config_test.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2017-02-16 19:45:20 +0100
committerJakob Unterwurzacher2017-02-16 19:45:20 +0100
commit55d0523dbe405c52e651c2063e1479726e05c2c0 (patch)
tree5b8accc657020687be743dc07638320b7dda05a5 /internal/configfile/config_test.go
parent0b19e637c986f602dad95be2570b2bd125677714 (diff)
tests: configfile: add missing newlines in verbose output
Diffstat (limited to 'internal/configfile/config_test.go')
-rw-r--r--internal/configfile/config_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/configfile/config_test.go b/internal/configfile/config_test.go
index f993803..5a16533 100644
--- a/internal/configfile/config_test.go
+++ b/internal/configfile/config_test.go
@@ -13,7 +13,7 @@ func TestLoadV1(t *testing.T) {
if err == nil {
t.Errorf("Outdated v1 config file must fail to load but it didn't")
} else if testing.Verbose() {
- fmt.Print(err)
+ fmt.Println(err)
}
}
@@ -55,7 +55,7 @@ func TestLoadV2StrangeFeature(t *testing.T) {
if err == nil {
t.Errorf("Loading unknown feature must fail but it didn't")
} else if testing.Verbose() {
- fmt.Print(err)
+ fmt.Println(err)
}
}