From 80d191ff7c69c5512a58e16092bbc0a442764144 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Thu, 4 Jun 2015 19:45:22 +1200 Subject: [PATCH] Try to appease Travis --- test/test_pathod.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_pathod.py b/test/test_pathod.py index 0dd5fb678..613cb1f5e 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):