diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-10-28 12:56:08 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-10-28 12:56:08 +1300 |
commit | 9d42a06c92f0fdc7ca986b738086d361d9b0599b (patch) | |
tree | 03604d6f93c3358d8cf70bf0e94f601e8ce5754b /test/test_pathod.py | |
parent | f54ed69a358d2dd059bd844c752f96e29e90e269 (diff) | |
download | mitmproxy-9d42a06c92f0fdc7ca986b738086d361d9b0599b.tar.gz mitmproxy-9d42a06c92f0fdc7ca986b738086d361d9b0599b.tar.bz2 mitmproxy-9d42a06c92f0fdc7ca986b738086d361d9b0599b.zip |
Move message body to new lazy-generator scheme.
Diffstat (limited to 'test/test_pathod.py')
-rw-r--r-- | test/test_pathod.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_pathod.py b/test/test_pathod.py index 195c7333..83f57727 100644 --- a/test/test_pathod.py +++ b/test/test_pathod.py @@ -141,7 +141,7 @@ class CommonTests(tutils.DaemonTests): def test_source_access_denied(self): rsp = self.get("200:b</foo") assert rsp.status_code == 800 - assert "Access Denied" in rsp.content + assert "File access denied" in rsp.content class TestDaemon(CommonTests): |