diff options
Diffstat (limited to '')
-rw-r--r-- | test/test_configuration.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_configuration.py b/test/test_configuration.py index e3ddc891..d774ceb3 100644 --- a/test/test_configuration.py +++ b/test/test_configuration.py @@ -25,7 +25,7 @@ class TestConfiguration(TestControl): def test_json_unicode(self): assert 'success' in self.conf( - u""" + """ { "ap\u0070": { "type": "\u0070ython", @@ -64,7 +64,7 @@ class TestConfiguration(TestControl): def test_json_unicode_number(self): assert 'success' in self.conf( - u""" + """ { "app": { "type": "python", @@ -252,7 +252,7 @@ class TestConfiguration(TestControl): ) def test_listeners_port_release(self): - for i in range(10): + for _ in range(10): fail = False with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) |