diff options
Diffstat (limited to 'plugin/log/log_test.go')
-rw-r--r-- | plugin/log/log_test.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugin/log/log_test.go b/plugin/log/log_test.go index ee1201a13..05271478c 100644 --- a/plugin/log/log_test.go +++ b/plugin/log/log_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/coredns/coredns/plugin/pkg/dnsrecorder" + "github.com/coredns/coredns/plugin/pkg/dnstest" "github.com/coredns/coredns/plugin/pkg/response" "github.com/coredns/coredns/plugin/test" @@ -31,7 +31,7 @@ func TestLoggedStatus(t *testing.T) { r := new(dns.Msg) r.SetQuestion("example.org.", dns.TypeA) - rec := dnsrecorder.New(&test.ResponseWriter{}) + rec := dnstest.NewRecorder(&test.ResponseWriter{}) rcode, _ := logger.ServeDNS(ctx, rec, r) if rcode != 0 { @@ -62,7 +62,7 @@ func TestLoggedClassDenial(t *testing.T) { r := new(dns.Msg) r.SetQuestion("example.org.", dns.TypeA) - rec := dnsrecorder.New(&test.ResponseWriter{}) + rec := dnstest.NewRecorder(&test.ResponseWriter{}) logger.ServeDNS(ctx, rec, r) @@ -90,7 +90,7 @@ func TestLoggedClassError(t *testing.T) { r := new(dns.Msg) r.SetQuestion("example.org.", dns.TypeA) - rec := dnsrecorder.New(&test.ResponseWriter{}) + rec := dnstest.NewRecorder(&test.ResponseWriter{}) logger.ServeDNS(ctx, rec, r) |