diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-06-28 19:26:08 -0700 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-06-28 19:26:08 -0700 |
commit | 3b53d3e393f30879420b4407583c42bb1f51563e (patch) | |
tree | 19e8e462d89e5e8336a96a6ff202610a686947a0 /test | |
parent | 042bcf7cf824551ac128ecff416e017ecc95f7e5 (diff) | |
download | mitmproxy-3b53d3e393f30879420b4407583c42bb1f51563e.tar.gz mitmproxy-3b53d3e393f30879420b4407583c42bb1f51563e.tar.bz2 mitmproxy-3b53d3e393f30879420b4407583c42bb1f51563e.zip |
fix mysterious tox issue
Diffstat (limited to 'test')
-rw-r--r-- | test/mitmproxy/test_proxy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mitmproxy/test_proxy.py b/test/mitmproxy/test_proxy.py index 49c9c909..cd24fc9f 100644 --- a/test/mitmproxy/test_proxy.py +++ b/test/mitmproxy/test_proxy.py @@ -96,7 +96,7 @@ class TestProcessProxyOptions: self.assert_err("expected one argument", "--upstream-auth") self.assert_err("Invalid upstream auth specification", "--upstream-auth", "test") - self.assert_err("not allowed with", "-R", "http://localhost", "-T") + self.assert_err("mutually exclusive", "-R", "http://localhost", "-T") def test_socks_auth(self): self.assert_err("Proxy Authentication not supported in SOCKS mode.", "--socks", "--nonanonymous") |