Skip to content

Commit 5cb200d

Browse files
committed
reorder
1 parent c93f0e3 commit 5cb200d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/asynchronous/test_srv_polling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ async def test_replace_both_with_two(self):
216216
async def test_dns_failures(self):
217217
from dns import exception
218218

219-
for exc in (exception.FormError, exception.TooBig, exception.Timeout):
219+
for exc in (exception.FormError, exception.Timeout, exception.TooBig):
220220

221221
def response_callback(*args):
222222
raise exc("DNS Failure!")

test/test_srv_polling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def test_replace_both_with_two(self):
216216
def test_dns_failures(self):
217217
from dns import exception
218218

219-
for exc in (exception.FormError, exception.TooBig, exception.Timeout):
219+
for exc in (exception.FormError, exception.Timeout, exception.TooBig):
220220

221221
def response_callback(*args):
222222
raise exc("DNS Failure!")

0 commit comments

Comments
 (0)