diff options
| author | Christophe Besson <cbesson@gmail.com> | 2026-09-24 02:41:02 +0200 |
|---|---|---|
| committer | Christophe Besson <cbesson@gmail.com> | 2026-09-24 16:45:38 +0200 |
| commit | 3544b143b1a1272931377c47bf7e17b94ee5360b (patch) | |
| tree | 3a9b26fa40aa778dde05065da12c3b6103e83a3a /packages/meshbay-node/tests | |
| parent | eaac12bf945cab10f02429aa8d85239f22280554 (diff) | |
| download | meshbay-3544b143b1a1272931377c47bf7e17b94ee5360b.tar.gz | |
refactor(node): move per-account blobs and key bundles out of webrtc_server
BlobsMixin in transport/webrtc/blobs.py, with the blob caps and the kind
pattern.
Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
Diffstat (limited to 'packages/meshbay-node/tests')
| -rw-r--r-- | packages/meshbay-node/tests/test_user_blob_mnp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/meshbay-node/tests/test_user_blob_mnp.py b/packages/meshbay-node/tests/test_user_blob_mnp.py index 85893af..48b9be7 100644 --- a/packages/meshbay-node/tests/test_user_blob_mnp.py +++ b/packages/meshbay-node/tests/test_user_blob_mnp.py @@ -20,12 +20,12 @@ handler methods against a real store, with `_send` captured. import pytest from meshbay_common.protocol import MNP from meshbay_node.bundle_store import BundleStore -from meshbay_node.transport.webrtc_server import ( +from meshbay_node.transport.webrtc.blobs import ( USER_BLOB_ACCOUNT_MAX, USER_BLOB_BODY_MAX, USER_BLOB_MANIFEST_MAX, - WebRTCPeerSession, ) +from meshbay_node.transport.webrtc_server import WebRTCPeerSession @pytest.fixture |