diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-06-26 19:56:47 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-06-26 19:57:59 +1200 |
commit | 8ccfb376f34a66dfc591e8ffa0307810f588937c (patch) | |
tree | a651a058b85690e0fe6bffc8f6f9925f31f7d33f /test/test_cmdline.py | |
parent | 015a74fd14c6b7ac27a5427c5933987e2ab92bcf (diff) | |
download | mitmproxy-8ccfb376f34a66dfc591e8ffa0307810f588937c.tar.gz mitmproxy-8ccfb376f34a66dfc591e8ffa0307810f588937c.tar.bz2 mitmproxy-8ccfb376f34a66dfc591e8ffa0307810f588937c.zip |
Remove -T and -U command-line options.
They're redundant convenience options, and we need more space.
Diffstat (limited to 'test/test_cmdline.py')
-rw-r--r-- | test/test_cmdline.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/test_cmdline.py b/test/test_cmdline.py index 45c0b3e6..cc1abfa2 100644 --- a/test/test_cmdline.py +++ b/test/test_cmdline.py @@ -41,14 +41,6 @@ def test_common(): assert cmdline.get_common_options(opts) - opts.stickycookie_all = True - opts.stickyauth_all = True - v = cmdline.get_common_options(opts) - assert v["stickycookie"] == ".*" - assert v["stickyauth"] == ".*" - - opts.stickycookie_all = False - opts.stickyauth_all = False opts.stickycookie_filt = "foo" opts.stickyauth_filt = "foo" v = cmdline.get_common_options(opts) |