Fixed typo in tests/servers/tests.py.

This commit is contained in:
Jacob Walls 2021-10-25 01:42:06 -04:00 committed by GitHub
parent 551c997fea
commit 1feb55d607
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -278,7 +278,7 @@ class LiveServerViews(LiveServerBase):
@override_settings(ROOT_URLCONF='servers.urls')
class SingleTreadLiveServerViews(SingleThreadLiveServerTestCase):
class SingleThreadLiveServerViews(SingleThreadLiveServerTestCase):
available_apps = ['servers']
def test_closes_connection_with_content_length(self):
@ -288,8 +288,8 @@ class SingleTreadLiveServerViews(SingleThreadLiveServerTestCase):
Persistent connections require threading server.
"""
conn = HTTPConnection(
SingleTreadLiveServerViews.server_thread.host,
SingleTreadLiveServerViews.server_thread.port,
SingleThreadLiveServerViews.server_thread.host,
SingleThreadLiveServerViews.server_thread.port,
timeout=1,
)
try: