diff options
author | Maximilian Hils <git@maximilianhils.com> | 2015-09-16 20:12:53 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2015-09-16 20:12:53 +0200 |
commit | 1a6e41c2002773bb82a5d95d8d9a8ab3aa422c98 (patch) | |
tree | cfc04eb1b998c8ca4c1428eae52974f1865f6bf7 /test/tutils.py | |
parent | 9f26d68f47bc7729b0727ed67253503e047ea0f9 (diff) | |
download | mitmproxy-1a6e41c2002773bb82a5d95d8d9a8ab3aa422c98.tar.gz mitmproxy-1a6e41c2002773bb82a5d95d8d9a8ab3aa422c98.tar.bz2 mitmproxy-1a6e41c2002773bb82a5d95d8d9a8ab3aa422c98.zip |
minor fixes
Diffstat (limited to 'test/tutils.py')
-rw-r--r-- | test/tutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tutils.py b/test/tutils.py index ff71387a..a728e852 100644 --- a/test/tutils.py +++ b/test/tutils.py @@ -63,7 +63,7 @@ class DaemonTests(object): def getpath(self, path, params=None): scheme = "https" if self.ssl else "http" resp = requests.get( - "%s://127.0.0.1:%s/%s" % ( + "%s://localhost:%s/%s" % ( scheme, self.d.port, path |