diff options
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/etcd/other_test.go | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/plugin/etcd/other_test.go b/plugin/etcd/other_test.go index 7e6e8febb..c873d9412 100644 --- a/plugin/etcd/other_test.go +++ b/plugin/etcd/other_test.go @@ -131,16 +131,12 @@ var dnsTestCasesOther = []test.Case{ // Large txt greater than 512 (UDP) { Qname: "large600.skydns.test.", Qtype: dns.TypeTXT, - Answer: []dns.RR{ - test.TXT(fmt.Sprintf("large600.skydns.test. 300 IN TXT \"%s\"", strings.Repeat("0", 600))), - }, + Answer: []dns.RR{}, }, // Large txt greater than 1500 (typical Ethernet) { Qname: "large2000.skydns.test.", Qtype: dns.TypeTXT, - Answer: []dns.RR{ - test.TXT(fmt.Sprintf("large2000.skydns.test. 300 IN TXT \"%s\"", strings.Repeat("0", 2000))), - }, + Answer: []dns.RR{}, }, // Duplicate IP address test { |