From 06fc321c2c31f0abb152a9ad2c134f8c0d88230d Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Sat, 30 Aug 2014 08:45:10 +0100 Subject: [PATCH] fmt --- dns_test.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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}