Skip to content

Commit 144ec31

Browse files
committed
fix: Two IPv6 for circl.lu
1 parent 67f85f0 commit 144ec31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def test_auth(self) -> None:
2424
for i in x.iter_query('circl.lu', filter_rrtype='A'):
2525
self.assertEqual(i.rrname, '185.194.93.14')
2626
for i in x.iter_query('circl.lu', filter_rrtype='AAAA'):
27-
self.assertEqual(i.rrname, '2a00:5980:93::67')
27+
self.assertIn(i.rrname, ['2a00:5980:93::67', '2a00:5980:93::14'])
2828
ns_records = [i for i in x.iter_query('circl.lu', filter_rrtype='NS')]
2929
self.assertEqual(len(ns_records), 8, ns_records)
3030
sorted_query = x.query('circl.lu', sort_by='rrname')

0 commit comments

Comments
 (0)