Skip to content

Commit 67f85f0

Browse files
committed
fix: Make sure test pass again.
1 parent 49c9daa commit 67f85f0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
15+
python-version: ["3.10", "3.11", "3.12", "3.13", '3.14']
1616

1717
steps:
1818
- uses: actions/checkout@v4

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
19+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2020

2121
steps:
2222
- uses: actions/checkout@v4

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::14')
27+
self.assertEqual(i.rrname, '2a00:5980:93::67')
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)