diff --git a/dns_test.go b/dns_test.go index 3ad8a894..99d9e09a 100644 --- a/dns_test.go +++ b/dns_test.go @@ -319,13 +319,13 @@ func TestMsgLength2(t *testing.T) { func TestMsgLengthCompressionMalformed(t *testing.T) { // SOA with empty hostmaster, which is illegal soa := &SOA{Hdr: RR_Header{Name: ".", Rrtype: TypeSOA, Class: ClassINET, Ttl: 12345}, - Ns: ".", - Mbox: "", - Serial: 0, - Refresh: 28800, - Retry: 7200, - Expire: 604800, - Minttl: 60} + Ns: ".", + Mbox: "", + Serial: 0, + Refresh: 28800, + Retry: 7200, + Expire: 604800, + Minttl: 60} m := new(Msg) m.Compress = true m.Ns = []RR{soa}