From e3cecfdcaec55c4dd62c7d4fef3d03fed6d03e38 Mon Sep 17 00:00:00 2001 From: Mikio Hara Date: Mon, 22 Aug 2016 15:02:59 +0900 Subject: [PATCH] net: fix a typo Change-Id: I29fadde646095fa8507f239a339857bf53172c14 Reviewed-on: https://go-review.googlesource.com/27418 Reviewed-by: Brad Fitzpatrick --- src/net/dnsclient_unix_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/dnsclient_unix_test.go b/src/net/dnsclient_unix_test.go index c953c1efaf6..8e9a015d554 100644 --- a/src/net/dnsclient_unix_test.go +++ b/src/net/dnsclient_unix_test.go @@ -411,7 +411,7 @@ func TestGoLookupIPWithResolverConfig(t *testing.T) { // We need to take care with errors on both // DNS message exchange layer and DNS // transport layer because goLookupIP may fail - // when the IP connectivty on node under test + // when the IP connectivity on node under test // gets lost during its run. if err, ok := err.(*DNSError); !ok || tt.error != nil && (err.Name != tt.error.(*DNSError).Name || err.Server != tt.error.(*DNSError).Server || err.IsTimeout != tt.error.(*DNSError).IsTimeout) { t.Errorf("got %v; want %v", err, tt.error)