From 54310ffcc2fda4da294cddc63f1a2482fff1974c Mon Sep 17 00:00:00 2001 From: Scott Kitterman Date: Tue, 2 Jan 2024 00:45:54 -0500 Subject: [PATCH] Update test_query_ptr test to use address with PTR record --- tests/test_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_all.py b/tests/test_all.py index 2e7e5ac..41aefc4 100755 --- a/tests/test_all.py +++ b/tests/test_all.py @@ -409,7 +409,7 @@ def test_query_ptr(self): self.result, self.errorno = None, None def cb(result, errorno): self.result, self.errorno = result, errorno - ip = '8.8.8.8' + ip = '172.253.122.26' self.channel.query(ipaddress.ip_address(ip).reverse_pointer, pycares.QUERY_TYPE_PTR, cb) self.wait() self.assertNoError(self.errorno)