fix bad test AAAA value

This commit is contained in:
AJ ONeal 2017-10-23 20:39:32 -06:00
parent 4d8c88e882
commit 32bc4e6fea
2 changed files with 6 additions and 1 deletions

View File

@ -1 +1,6 @@
dig @localhost -p 65053 ANY aaaa.example.com
# Using the wrong type (A instead of AAAA) results in an erroneous packet
{ "zone": "example.com", "name": "aaaa.example.com", "tld": "com", "sld": "example", "sub": "aaaa"
, "type": "A", "address": "::1" }

View File

@ -29,7 +29,7 @@ module.exports = {
, { "zone": "example.com", "name": "a.example.com", "tld": "com", "sld": "example", "sub": "a"
, "type": "A", "address": "4.3.2.1" }
, { "zone": "example.com", "name": "aaaa.example.com", "tld": "com", "sld": "example", "sub": "aaaa"
, "type": "A", "address": "::1" }
, "type": "AAAA", "address": "::1" }
, { "zone": "example.com", "name": "aname.example.com", "tld": "com", "sld": "example", "sub": "aname"
, "type": "A", "aname": "amazon.com" }
, { "zone": "example.com", "name": "devname.example.com", "tld": "com", "sld": "example", "sub": "devname"