tests: configfile: add missing newlines in verbose output

This commit is contained in:
Jakob Unterwurzacher 2017-02-16 19:45:20 +01:00
parent 0b19e637c9
commit 55d0523dbe
1 changed files with 2 additions and 2 deletions

View File

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