summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2022-06-10 19:49:26 -0700
committerBob Halley <halley@dnspython.org>2022-06-10 19:49:26 -0700
commit40b856a464449ee3af1f00512b26cdcee2c214d7 (patch)
tree3c592fe4a352faca8ae079c541ca369a273f4a68 /tests
parentfa441823c45b6be90ddbf398103c357adf1e7afd (diff)
downloaddnspython-40b856a464449ee3af1f00512b26cdcee2c214d7.tar.gz
remove debugging print
Diffstat (limited to 'tests')
-rw-r--r--tests/util.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/util.py b/tests/util.py
index bf417e4..5518b41 100644
--- a/tests/util.py
+++ b/tests/util.py
@@ -90,7 +90,6 @@ def is_internet_reachable():
_have_ipv6 = check_networking(
["2001:4860:4860::8888", "2606:4700:4700::1111"]
)
- print(_have_ipv4 or _have_ipv6)
_internet_reachable = _have_ipv4 or _have_ipv6
return _internet_reachable