diff options
Diffstat (limited to 'test/proxy_test.go')
-rw-r--r-- | test/proxy_test.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/proxy_test.go b/test/proxy_test.go index d25ace689..87a05a21e 100644 --- a/test/proxy_test.go +++ b/test/proxy_test.go @@ -1,8 +1,6 @@ package test import ( - "io/ioutil" - "log" "testing" "github.com/coredns/coredns/plugin/proxy" @@ -31,8 +29,6 @@ func TestLookupProxy(t *testing.T) { } defer i.Stop() - log.SetOutput(ioutil.Discard) - p := proxy.NewLookup([]string{udp}) state := request.Request{W: &test.ResponseWriter{}, Req: new(dns.Msg)} resp, err := p.Lookup(state, "example.org.", dns.TypeA) @@ -70,8 +66,6 @@ func TestLookupDnsWithForcedTcp(t *testing.T) { } defer i.Stop() - log.SetOutput(ioutil.Discard) - p := proxy.NewLookupWithOption([]string{tcp}, proxy.Options{ForceTCP: true}) state := request.Request{W: &test.ResponseWriter{}, Req: new(dns.Msg)} resp, err := p.Lookup(state, "example.org.", dns.TypeA) @@ -114,8 +108,6 @@ func BenchmarkProxyLookup(b *testing.B) { } defer i.Stop() - log.SetOutput(ioutil.Discard) - p := proxy.NewLookup([]string{udp}) state := request.Request{W: &test.ResponseWriter{}, Req: new(dns.Msg)} |