diff options
Diffstat (limited to 'plugin/etcd/setup_test.go')
-rw-r--r-- | plugin/etcd/setup_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/etcd/setup_test.go b/plugin/etcd/setup_test.go index 620460cc1..0696dc3e3 100644 --- a/plugin/etcd/setup_test.go +++ b/plugin/etcd/setup_test.go @@ -56,7 +56,7 @@ func TestSetupEtcd(t *testing.T) { for i, test := range tests { c := caddy.NewTestController("dns", test.input) - etcd, _ /*stubzones*/, err := etcdParse(c) + etcd, err := etcdParse(c) if test.shouldErr && err == nil { t.Errorf("Test %d: Expected error but found %s for input %s", i, err, test.input) |