diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-07-24 18:01:55 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-07-24 18:01:55 +0200 |
commit | 07c9d46fab1e5934b1b0e105f11006f058917f8b (patch) | |
tree | 349953253b8619a446e08cce236e008a40532d33 /test | |
parent | 0892649d319d542897e4761cd75dc8206ec9a7b1 (diff) | |
download | mitmproxy-07c9d46fab1e5934b1b0e105f11006f058917f8b.tar.gz mitmproxy-07c9d46fab1e5934b1b0e105f11006f058917f8b.tar.bz2 mitmproxy-07c9d46fab1e5934b1b0e105f11006f058917f8b.zip |
remove debug output in tests
Diffstat (limited to 'test')
-rw-r--r-- | test/test_server.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/test_server.py b/test/test_server.py index 10822ae4..8c6b4eab 100644 --- a/test/test_server.py +++ b/test/test_server.py @@ -184,9 +184,6 @@ class TcpMixin: class AppMixin: def test_app(self): ret = self.app("/") - print(ret) - print(ret.status_code) - print(ret.content) assert ret.status_code == 200 assert "mitmproxy" in ret.content |