From fa91770b09a6ccfbceddd323f5698556ab76b7d8 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Mon, 1 Jul 2019 08:55:10 +0200 Subject: [PATCH] =?UTF-8?q?integration/dns:=208.8.8.8=E2=80=99s=20RDNS=20c?= =?UTF-8?q?hanged=20to=20dns.google.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- integration/dns/dns_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/dns/dns_test.go b/integration/dns/dns_test.go index 65794ae..023938b 100644 --- a/integration/dns/dns_test.go +++ b/integration/dns/dns_test.go @@ -37,7 +37,7 @@ func TestDNS(t *testing.T) { if err != nil { t.Fatal(err) } - if got, want := strings.TrimSpace(string(out)), "google-public-dns-a.google.com."; got != want { + if got, want := strings.TrimSpace(string(out)), "dns.google."; got != want { t.Fatalf("dig -x 8.8.8.8: unexpected reply: got %q, want %q", got, want) } }