diff --git a/tests/http/test_endpoint.py b/tests/http/test_endpoint.py
index 3b0155ed03..b2e9533b07 100644
--- a/tests/http/test_endpoint.py
+++ b/tests/http/test_endpoint.py
@@ -20,12 +20,12 @@ from tests import unittest
class ServerNameTestCase(unittest.TestCase):
def test_parse_server_name(self):
test_data = {
- 'localhost': ('localhost', None),
- 'my-example.com:1234': ('my-example.com', 1234),
- '1.2.3.4': ('1.2.3.4', None),
- '[0abc:1def::1234]': ('[0abc:1def::1234]', None),
- '1.2.3.4:1': ('1.2.3.4', 1),
- '[0abc:1def::1234]:8080': ('[0abc:1def::1234]', 8080),
+ "localhost": ("localhost", None),
+ "my-example.com:1234": ("my-example.com", 1234),
+ "1.2.3.4": ("1.2.3.4", None),
+ "[0abc:1def::1234]": ("[0abc:1def::1234]", None),
+ "1.2.3.4:1": ("1.2.3.4", 1),
+ "[0abc:1def::1234]:8080": ("[0abc:1def::1234]", 8080),
}
for i, o in test_data.items():
|