diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2016-10-19 15:25:39 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2016-10-19 20:26:05 +1300 |
commit | 24cf8da27eb56a65bf3e4ceb78bbeacdb1864597 (patch) | |
tree | fee98428fbf36897aa874fd91fe5c9738bf2626f /test/mitmproxy/test_utils.py | |
parent | 5a68d21e8c87e05f2ad0c18e6c7c505f5e9fc93d (diff) | |
download | mitmproxy-24cf8da27eb56a65bf3e4ceb78bbeacdb1864597.tar.gz mitmproxy-24cf8da27eb56a65bf3e4ceb78bbeacdb1864597.tar.bz2 mitmproxy-24cf8da27eb56a65bf3e4ceb78bbeacdb1864597.zip |
Move all tools into mitmproxy.tools, move models/* to top level
The primary motivation here (and for all the other moving around) is to present
a clean "front of house" to library users, and to migrate primary objects to
the top of the module hierarchy.
Diffstat (limited to 'test/mitmproxy/test_utils.py')
-rw-r--r-- | test/mitmproxy/test_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mitmproxy/test_utils.py b/test/mitmproxy/test_utils.py index 79b72eec..ed59f484 100644 --- a/test/mitmproxy/test_utils.py +++ b/test/mitmproxy/test_utils.py @@ -5,7 +5,7 @@ utils.CERT_SLEEP_TIME = 0 def test_pkg_data(): - assert utils.pkg_data.path("console") + assert utils.pkg_data.path("tools/console") tutils.raises("does not exist", utils.pkg_data.path, "nonexistent") |