aboutsummaryrefslogtreecommitdiffstats
path: root/packages/meshbay-node/tests/test_security_regressions.py
diff options
context:
space:
mode:
authorChristophe Besson <cbesson@gmail.com>2026-09-24 12:32:05 +0200
committerChristophe Besson <cbesson@gmail.com>2026-09-24 16:45:38 +0200
commit76c67f4ad43ddb30ac25868554638c1e0aac83bd (patch)
treebb33f2c0ec18282058953cc627593a298158efaa /packages/meshbay-node/tests/test_security_regressions.py
parentf453cd39ef0fec606b3d1a67b3fae5fa96e719f9 (diff)
downloadmeshbay-76c67f4ad43ddb30ac25868554638c1e0aac83bd.tar.gz
refactor(node): move _dispatch_message out of webrtc_server, unchanged
DispatchMixin in transport/webrtc/dispatch.py, with the pre-proof fetch bound it enforces. The elif chain moves as it is; turning it into a table is the next commit, on its own. Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
Diffstat (limited to 'packages/meshbay-node/tests/test_security_regressions.py')
-rw-r--r--packages/meshbay-node/tests/test_security_regressions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/meshbay-node/tests/test_security_regressions.py b/packages/meshbay-node/tests/test_security_regressions.py
index b3f373d..5e8badf 100644
--- a/packages/meshbay-node/tests/test_security_regressions.py
+++ b/packages/meshbay-node/tests/test_security_regressions.py
@@ -792,7 +792,7 @@ def test_ffmpeg_never_blocks_the_event_loop():
def test_pre_proof_fetches_are_bounded():
"""C4: the pre-proof bundle window is a disclosure surface; bound it."""
- from meshbay_node.transport.webrtc_server import MAX_PRE_PROOF_FETCHES
+ from meshbay_node.transport.webrtc.dispatch import MAX_PRE_PROOF_FETCHES
assert 0 < MAX_PRE_PROOF_FETCHES <= 10