diff options
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): |