We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba0e8be commit c2d7ce8Copy full SHA for c2d7ce8
tests/test_basic.py
@@ -90,6 +90,6 @@ async def test_errors(harness):
90
from netfilterqueue import NetfilterQueue
91
92
nfq = NetfilterQueue()
93
- nfq.bind(1, lambda p: None, sock_len=1024)
+ nfq.bind(1, lambda p: None, sock_len=131072)
94
with pytest.raises(RuntimeError, match="A queue is already bound"):
95
- nfq.bind(2, lambda p: None, sock_len=1024)
+ nfq.bind(2, lambda p: None, sock_len=131072)
0 commit comments