diff options
Diffstat (limited to 'test/ds_file_test.go')
-rw-r--r-- | test/ds_file_test.go | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/test/ds_file_test.go b/test/ds_file_test.go index 16170aad3..3775c9033 100644 --- a/test/ds_file_test.go +++ b/test/ds_file_test.go @@ -3,7 +3,6 @@ package test import ( "io/ioutil" "log" - "sort" "testing" "github.com/coredns/coredns/middleware/proxy" @@ -66,22 +65,6 @@ func TestLookupDS(t *testing.T) { t.Fatalf("Expected to receive reply, but didn't for %s %d", tc.Qname, tc.Qtype) } - sort.Sort(mtest.RRSet(resp.Answer)) - sort.Sort(mtest.RRSet(resp.Ns)) - sort.Sort(mtest.RRSet(resp.Extra)) - - if !mtest.Header(t, tc, resp) { - t.Logf("%v\n", resp) - continue - } - if !mtest.Section(t, tc, mtest.Answer, resp.Answer) { - t.Logf("%v\n", resp) - } - if !mtest.Section(t, tc, mtest.Ns, resp.Ns) { - t.Logf("%v\n", resp) - } - if !mtest.Section(t, tc, mtest.Extra, resp.Extra) { - t.Logf("%v\n", resp) - } + mtest.SortAndCheck(t, resp, tc) } } |