1
0
mirror of https://github.com/django/django.git synced 2024-12-23 01:25:58 +00:00

Refs #28440 -- Fixed server connection closing test on macOS.

This commit is contained in:
Tom 2017-10-12 16:12:18 +01:00 committed by Tim Graham
parent ad8036d715
commit 32ade78c55

View File

@ -70,7 +70,8 @@ class LiveServerViews(LiveServerBase):
conn.request('GET', '/example_view/', headers={'Connection': 'keep-alive'})
response = conn.getresponse().read()
conn.request('GET', '/example_view/', headers={'Connection': 'close'})
with self.assertRaises(RemoteDisconnected, msg='Server did not close the connection'):
# macOS may give ConnectionResetError.
with self.assertRaises((RemoteDisconnected, ConnectionResetError)):
try:
conn.getresponse()
except ConnectionAbortedError: