We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62e8012 commit b084d64Copy full SHA for b084d64
tests/test_exposition.py
@@ -111,7 +111,7 @@ def do_PUT(self):
111
do_DELETE = do_PUT
112
113
httpd = HTTPServer(('localhost', 0), TestHandler)
114
- self.address = 'http://{0}'.format(':'.join([str(x) for x in httpd.server_address]))
+ self.address = ':'.join([str(x) for x in httpd.server_address])
115
class TestServer(threading.Thread):
116
def run(self):
117
httpd.handle_request()
0 commit comments