From 030a9f8f87e862c738c858facabf2d0c4d44e440 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Sat, 22 Aug 2020 12:55:53 -0700 Subject: [PATCH] disable 9.9.9.9 in tests temporarily --- tests/test_doh.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/test_doh.py b/tests/test_doh.py index 4c72c24b..8008596c 100644 --- a/tests/test_doh.py +++ b/tests/test_doh.py @@ -33,7 +33,11 @@ resolver_v6_addresses = [] try: with socket.socket(socket.AF_INET, socket.SOCK_DGRAM) as s: s.connect(('8.8.8.8', 53)) - resolver_v4_addresses = ['1.1.1.1', '8.8.8.8', '9.9.9.9'] + resolver_v4_addresses = [ + '1.1.1.1', + '8.8.8.8', + # '9.9.9.9', + ] except Exception: pass try: @@ -43,7 +47,7 @@ try: '2606:4700:4700::1111', # Google says 404 # '2001:4860:4860::8888', - '2620:fe::11' + # '2620:fe::fe', ] except Exception: pass -- 2.47.3