diff options
Diffstat (limited to 'test/test_pathod.py')
-rw-r--r-- | test/test_pathod.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_pathod.py b/test/test_pathod.py index 1a10d2c2..bfff3274 100644 --- a/test/test_pathod.py +++ b/test/test_pathod.py @@ -185,10 +185,10 @@ class CommonTests(tutils.DaemonTests): assert r.status_code == 202 def test_websocket(self): - r = self.pathoc("ws:/p/") + r = self.pathoc("ws:/p/", ws_read_limit=0) assert r.status_code == 101 - r = self.pathoc("ws:/p/ws") + r = self.pathoc("ws:/p/ws", ws_read_limit=0) assert r.status_code == 101 |