From 57a3d96ff57abffa8e7fbe3fd972a5ee39bd0fec Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Mon, 18 Nov 2019 06:30:10 -0800 Subject: Replaced unnecessary str()/bytes() calls with literals. --- tests/servers/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') 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)) -- cgit v1.3