diff options
Diffstat (limited to 'plugin/forward/forward_test.go')
-rw-r--r-- | plugin/forward/forward_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin/forward/forward_test.go b/plugin/forward/forward_test.go index d467a0efa..26167c25d 100644 --- a/plugin/forward/forward_test.go +++ b/plugin/forward/forward_test.go @@ -6,6 +6,7 @@ import ( "github.com/coredns/coredns/plugin/pkg/dnstest" "github.com/coredns/coredns/plugin/test" "github.com/coredns/coredns/request" + "github.com/miekg/dns" ) @@ -18,7 +19,7 @@ func TestForward(t *testing.T) { }) defer s.Close() - p := NewProxy(s.Addr) + p := NewProxy(s.Addr, nil /* not TLS */) f := New() f.SetProxy(p) defer f.Close() |