diff options
Diffstat (limited to 'packages/meshbay-node/tests/test_device_on_connection.py')
| -rw-r--r-- | packages/meshbay-node/tests/test_device_on_connection.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/meshbay-node/tests/test_device_on_connection.py b/packages/meshbay-node/tests/test_device_on_connection.py index 3da8a8c..03ed9ca 100644 --- a/packages/meshbay-node/tests/test_device_on_connection.py +++ b/packages/meshbay-node/tests/test_device_on_connection.py @@ -12,7 +12,7 @@ oldest live device" and calling it the answer: * `_admin_exec_file_delete`, which authorized deletion against **that exact key** — so a person could not delete their own file from their other device, and the only symptom was "Signature verification failed" on their own upload - (`docs/desktop-client-v1.md` §4.8 A). + (`docs/MESHBAY_DESIGN.md` §3.3). `device_hello` closes the first: additive, signed, refused unless the key is a live device *of this account in the node's own roster*. The second is closed by @@ -224,8 +224,9 @@ class _Entry: async def test_a_second_device_can_delete_the_first_devices_upload( tmp_path, roster): """ - §4.8 A. Alice uploads from her phone and deletes from her desktop. Before - the fix this failed with "Signature verification failed" on her own file. + docs/MESHBAY_DESIGN.md §3.3. Alice uploads from her phone and deletes + from her desktop. Before the fix this failed with "Signature verification + failed" on her own file. """ sk_phone, pk_phone, pk_x_phone = _keys() sk_desk, pk_desk, pk_x_desk = _keys() |