diff options
author | 2016-04-26 20:45:29 +0100 | |
---|---|---|
committer | 2016-04-26 20:45:29 +0100 | |
commit | efd5135ee365fa2ce09cd41815039efff5a8f8e4 (patch) | |
tree | 27bd1394899d51eb9e9d8f892e2d4c4b86b00aac /test/proxy_test.go | |
parent | 1aa1a9219825e9f203eff718cb85360df706e542 (diff) | |
download | coredns-efd5135ee365fa2ce09cd41815039efff5a8f8e4.tar.gz coredns-efd5135ee365fa2ce09cd41815039efff5a8f8e4.tar.zst coredns-efd5135ee365fa2ce09cd41815039efff5a8f8e4.zip |
Some tiny changes and new benchmark test function (#136)
Diffstat (limited to 'test/proxy_test.go')
-rw-r--r-- | test/proxy_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/proxy_test.go b/test/proxy_test.go index 74e60148a..fc1ff2854 100644 --- a/test/proxy_test.go +++ b/test/proxy_test.go @@ -3,7 +3,6 @@ package test import ( "io/ioutil" "log" - "os" "testing" "github.com/miekg/coredns/middleware" @@ -18,6 +17,7 @@ example.org. IN SOA sns.dns.icann.org. noc.dns.icann.org. 2015082541 7200 3600 example.org. IN NS b.iana-servers.net. example.org. IN NS a.iana-servers.net. example.org. IN A 127.0.0.1 +example.org. IN A 127.0.0.2 ` func TestLookupProxy(t *testing.T) { @@ -38,7 +38,6 @@ func TestLookupProxy(t *testing.T) { defer ex.Stop() log.SetOutput(ioutil.Discard) - defer log.SetOutput(os.Stderr) p := proxy.New([]string{udp}) state := middleware.State{W: &test.ResponseWriter{}, Req: new(dns.Msg)} |