summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/servers/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/servers/tests.py b/tests/servers/tests.py
index 243b5a4200..33d0605443 100644
--- a/tests/servers/tests.py
+++ b/tests/servers/tests.py
@@ -250,7 +250,7 @@ class LiveServerPort(LiveServerBase):
def test_specified_port_bind(self):
"""LiveServerTestCase.port customizes the server's port."""
- TestCase = type(str('TestCase'), (LiveServerBase,), {})
+ TestCase = type('TestCase', (LiveServerBase,), {})
# Find an open port and tell TestCase to use it.
s = socket.socket()
s.bind(('', 0))