diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-06-04 19:45:22 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-06-04 19:45:22 +1200 |
commit | 80d191ff7c69c5512a58e16092bbc0a442764144 (patch) | |
tree | e5916fa676e3ee48d3719b179bc76b25b1b6b246 /test/test_pathod.py | |
parent | ae9f470d2b6e44fb87270b41a7694ed3b209da71 (diff) | |
download | mitmproxy-80d191ff7c69c5512a58e16092bbc0a442764144.tar.gz mitmproxy-80d191ff7c69c5512a58e16092bbc0a442764144.tar.bz2 mitmproxy-80d191ff7c69c5512a58e16092bbc0a442764144.zip |
Try to appease Travis
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 0dd5fb67..613cb1f5 100644 --- a/test/test_pathod.py +++ b/test/test_pathod.py @@ -200,7 +200,7 @@ class CommonTests(tutils.DaemonTests): def test_websocket_frame(self): r = self.pathoc(["ws:/p/", "wf:b@10"], ws_read_limit=0) - assert self.d.last_log()["type"] == "wsframe" + assert "wsframe" in [i["type"] for i in self.d.log()] class TestDaemon(CommonTests): |