diff options
Diffstat (limited to 'plugin/etcd/multi_test.go')
-rw-r--r-- | plugin/etcd/multi_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin/etcd/multi_test.go b/plugin/etcd/multi_test.go index 3ff423d7e..d58d22de0 100644 --- a/plugin/etcd/multi_test.go +++ b/plugin/etcd/multi_test.go @@ -7,6 +7,7 @@ import ( "github.com/coredns/coredns/plugin/etcd/msg" "github.com/coredns/coredns/plugin/pkg/dnstest" + "github.com/coredns/coredns/plugin/pkg/fall" "github.com/coredns/coredns/plugin/test" "github.com/miekg/dns" @@ -15,7 +16,7 @@ import ( func TestMultiLookup(t *testing.T) { etc := newEtcdPlugin() etc.Zones = []string{"skydns.test.", "miek.nl."} - etc.Fallthrough = true + etc.Fall = fall.New() etc.Next = test.ErrorHandler() for _, serv := range servicesMulti { |