aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_pathod.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2013-02-23 21:46:01 +1300
committerAldo Cortesi <aldo@nullcube.com>2013-02-23 21:46:01 +1300
commit9c9e15341fd38508675b4f0036732a984aeedc3d (patch)
treec1065491569fe501496729ee4c559520743e95af /test/test_pathod.py
parent5288848d03c928cc6b6b541cdf63c3fe22133e24 (diff)
downloadmitmproxy-9c9e15341fd38508675b4f0036732a984aeedc3d.tar.gz
mitmproxy-9c9e15341fd38508675b4f0036732a984aeedc3d.tar.bz2
mitmproxy-9c9e15341fd38508675b4f0036732a984aeedc3d.zip
Make last_log return None if nothing is logged.
Diffstat (limited to 'test/test_pathod.py')
-rw-r--r--test/test_pathod.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_pathod.py b/test/test_pathod.py
index 665ef843..7f3edb63 100644
--- a/test/test_pathod.py
+++ b/test/test_pathod.py
@@ -96,7 +96,7 @@ class CommonTests(tutils.DaemonTests):
def test_logs(self):
assert self.d.clear_log()
- tutils.raises("no requests logged", self.d.last_log)
+ assert not self.d.last_log()
rsp = self.get("202:da")
assert len(self.d.log()) == 1
assert self.d.clear_log()