diff options
author | Jakob Unterwurzacher | 2017-03-05 23:24:47 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-03-05 23:24:47 +0100 |
commit | 6e9b6e17c33b4471c30248c11b292468fe4ab912 (patch) | |
tree | 32845a2beb1aefabe10e78b3a8cb8f35211299f3 /internal/configfile | |
parent | b878306d2a3fd18d4114a73febb2caa658f684ad (diff) |
tests: configfile: fix spurious test failure II
internal/configfile/config_test.go:67: c declared and not used
Diffstat (limited to 'internal/configfile')
-rw-r--r-- | internal/configfile/config_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/configfile/config_test.go b/internal/configfile/config_test.go index dc81600..3b72536 100644 --- a/internal/configfile/config_test.go +++ b/internal/configfile/config_test.go @@ -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) } |