aboutsummaryrefslogtreecommitdiff
path: root/src/net/dnsmsg_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/dnsmsg_test.go')
-rw-r--r--src/net/dnsmsg_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/dnsmsg_test.go b/src/net/dnsmsg_test.go
index 655d5c0a8f..1078d77ceb 100644
--- a/src/net/dnsmsg_test.go
+++ b/src/net/dnsmsg_test.go
@@ -66,7 +66,7 @@ func TestDNSParseCorruptSRVReply(t *testing.T) {
msg := new(dnsMsg)
ok := msg.Unpack(data)
if !ok {
- t.Fatalf("unpacking packet failed")
+ t.Fatal("unpacking packet failed")
}
msg.String() // exercise this code path
if g, e := len(msg.answer), 5; g != e {