diff options
Diffstat (limited to 'plugin/file/dname_test.go')
-rw-r--r-- | plugin/file/dname_test.go | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/plugin/file/dname_test.go b/plugin/file/dname_test.go index 9dd2c2e24..85dc9d360 100644 --- a/plugin/file/dname_test.go +++ b/plugin/file/dname_test.go @@ -122,23 +122,19 @@ var dnameDnssecTestCases = []test.Case{ }, }, { - Qname: "dname.example.org.", Qtype: dns.TypeDNAME, - Do: true, + Qname: "dname.example.org.", Qtype: dns.TypeDNAME, Do: true, Answer: []dns.RR{ test.DNAME("dname.example.org. 1800 IN DNAME test.example.org."), test.RRSIG("dname.example.org. 1800 IN RRSIG DNAME 5 3 1800 20170702091734 20170602091734 54282 example.org. HvXtiBM="), }, - Extra: []dns.RR{test.OPT(4096, true)}, }, { - Qname: "a.dname.example.org.", Qtype: dns.TypeA, - Do: true, + Qname: "a.dname.example.org.", Qtype: dns.TypeA, Do: true, Answer: []dns.RR{ test.CNAME("a.dname.example.org. 1800 IN CNAME a.test.example.org."), test.DNAME("dname.example.org. 1800 IN DNAME test.example.org."), test.RRSIG("dname.example.org. 1800 IN RRSIG DNAME 5 3 1800 20170702091734 20170602091734 54282 example.org. HvXtiBM="), }, - Extra: []dns.RR{test.OPT(4096, true)}, }, } |