From 6e9b6e17c33b4471c30248c11b292468fe4ab912 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 5 Mar 2017 23:24:47 +0100 Subject: [PATCH] tests: configfile: fix spurious test failure II internal/configfile/config_test.go:67: c declared and not used --- internal/configfile/config_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }