aboutsummaryrefslogtreecommitdiff
path: root/plugin/cache/cache_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/cache/cache_test.go')
-rw-r--r--plugin/cache/cache_test.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/plugin/cache/cache_test.go b/plugin/cache/cache_test.go
index 63b0989b3..b475f3473 100644
--- a/plugin/cache/cache_test.go
+++ b/plugin/cache/cache_test.go
@@ -22,7 +22,6 @@ type cacheTestCase struct {
Authoritative bool
RecursionAvailable bool
Truncated bool
- Response bool
shouldCache bool
}
@@ -113,15 +112,6 @@ var cacheTestCases = []cacheTestCase{
shouldCache: false,
},
{
- // Response with only something in the additional, this should not be cached.
- Response: true,
- in: test.Case{
- Qname: "example.org.", Qtype: dns.TypeMX,
- Extra: []dns.RR{test.MX("example.org. 1800 IN MX 1 mx.example.org.")},
- },
- shouldCache: false,
- },
- {
RecursionAvailable: true, Authoritative: true,
Case: test.Case{
Qname: "example.org.", Qtype: dns.TypeMX,
@@ -150,7 +140,6 @@ func cacheMsg(m *dns.Msg, tc cacheTestCase) *dns.Msg {
m.AuthenticatedData = tc.AuthenticatedData
m.Authoritative = tc.Authoritative
m.Rcode = tc.Rcode
- m.Response = tc.Response
m.Truncated = tc.Truncated
m.Answer = tc.in.Answer
m.Ns = tc.in.Ns