Skip to content

Commit c2d7ce8

Browse files
committed
Suppress warning harder
1 parent ba0e8be commit c2d7ce8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_basic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,6 @@ async def test_errors(harness):
9090
from netfilterqueue import NetfilterQueue
9191

9292
nfq = NetfilterQueue()
93-
nfq.bind(1, lambda p: None, sock_len=1024)
93+
nfq.bind(1, lambda p: None, sock_len=131072)
9494
with pytest.raises(RuntimeError, match="A queue is already bound"):
95-
nfq.bind(2, lambda p: None, sock_len=1024)
95+
nfq.bind(2, lambda p: None, sock_len=131072)

0 commit comments

Comments
 (0)