From f927701e74a3b6a22694a0d55e918febbeca9e98 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Thu, 30 Apr 2015 08:03:26 +1200 Subject: Websocket frame read limit. --- test/test_pathod.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/test_pathod.py') 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 -- cgit v1.2.3