tests: configfile: fix spurious test failure II

internal/configfile/config_test.go:67: c declared and not used
This commit is contained in:
Jakob Unterwurzacher 2017-03-05 23:24:47 +01:00
parent b878306d2a
commit 6e9b6e17c3
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ func TestCreateConfFile(t *testing.T) {
if err != nil {
t.Fatal(err)
}
_, c, err := LoadConfFile("config_test/tmp.conf", "test")
_, _, err = LoadConfFile("config_test/tmp.conf", "test")
if err != nil {
t.Fatal(err)
}