diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2011-08-03 22:38:23 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2011-08-03 22:41:38 +1200 |
commit | 57c653be5f8a6fe0d1785421faa6513ebd3d48c0 (patch) | |
tree | c2334815d6b20ec7719eba351126d307f11bf29f /test/test_dump.py | |
parent | cbd8d09849fbbd8ccd8f5cbe29f09949fc344767 (diff) | |
download | mitmproxy-57c653be5f8a6fe0d1785421faa6513ebd3d48c0.tar.gz mitmproxy-57c653be5f8a6fe0d1785421faa6513ebd3d48c0.tar.bz2 mitmproxy-57c653be5f8a6fe0d1785421faa6513ebd3d48c0.zip |
Move all HTTP objects to flow.py
That's Request, Response, ClientConnect, ClientDisconnect, Error, and Headers.
Diffstat (limited to 'test/test_dump.py')
-rw-r--r-- | test/test_dump.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_dump.py b/test/test_dump.py index 9a35772d..247ab15b 100644 --- a/test/test_dump.py +++ b/test/test_dump.py @@ -28,7 +28,7 @@ class uDumpMaster(libpry.AutoTree): m.handle_clientconnect(cc) m.handle_request(req) m.handle_response(resp) - m.handle_clientdisconnect(proxy.ClientDisconnect(cc)) + m.handle_clientdisconnect(flow.ClientDisconnect(cc)) def _dummy_cycle(self, n, filt, content, **options): cs = StringIO() |