From 44b1dd0e674347691c62a13d227edf0d36b7e290 Mon Sep 17 00:00:00 2001 From: zonescape <44441590+zonescape@users.noreply.github.com> Date: Mon, 11 Nov 2024 22:43:57 +0300 Subject: [PATCH] Test: Change address for DNS over QUIC tests (#4002) dns.adguard.com can be blocked in some places --- app/dns/nameserver_quic_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/dns/nameserver_quic_test.go b/app/dns/nameserver_quic_test.go index ef50d7d9..0088aa33 100644 --- a/app/dns/nameserver_quic_test.go +++ b/app/dns/nameserver_quic_test.go @@ -14,7 +14,7 @@ import ( ) func TestQUICNameServer(t *testing.T) { - url, err := url.Parse("quic://dns.adguard.com") + url, err := url.Parse("quic://dns.adguard-dns.com") common.Must(err) s, err := NewQUICNameServer(url, QueryStrategy_USE_IP) common.Must(err) @@ -42,7 +42,7 @@ func TestQUICNameServer(t *testing.T) { } func TestQUICNameServerWithIPv4Override(t *testing.T) { - url, err := url.Parse("quic://dns.adguard.com") + url, err := url.Parse("quic://dns.adguard-dns.com") common.Must(err) s, err := NewQUICNameServer(url, QueryStrategy_USE_IP4) common.Must(err) @@ -65,7 +65,7 @@ func TestQUICNameServerWithIPv4Override(t *testing.T) { } func TestQUICNameServerWithIPv6Override(t *testing.T) { - url, err := url.Parse("quic://dns.adguard.com") + url, err := url.Parse("quic://dns.adguard-dns.com") common.Must(err) s, err := NewQUICNameServer(url, QueryStrategy_USE_IP6) common.Must(err)