From c7224eccebfc95026886aadc1d990f8cb784a229 Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Fri, 23 Oct 2015 11:54:16 -0700 Subject: [PATCH] tests: use proxy str directly (imrpove test cov) --- tests/server_thread.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/server_thread.py b/tests/server_thread.py index 854e9c67..49695f4e 100644 --- a/tests/server_thread.py +++ b/tests/server_thread.py @@ -22,6 +22,7 @@ class ServerThreadRunner(object): self.port = self.httpd.socket.getsockname()[1] proxy_str = 'http://localhost:' + str(self.port) + self.proxy_str = proxy_str self.proxy_dict = {'http': proxy_str, 'https': proxy_str}