From d98e0d553e3fcd7ddf09a6288ca2298fc7e2ee7f Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Mon, 10 Jul 2023 17:18:47 -0400 Subject: [PATCH] Fix the test. --- src/allmydata/test/test_storage_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/test/test_storage_client.py b/src/allmydata/test/test_storage_client.py index 0671526ae..2adedb9f8 100644 --- a/src/allmydata/test/test_storage_client.py +++ b/src/allmydata/test/test_storage_client.py @@ -292,7 +292,7 @@ class PluginMatchedAnnouncement(SyncTestCase): def set_rref(self, server_id, node, rref): storage_broker = node.get_storage_broker() native_storage_server = storage_broker.servers[server_id] - native_storage_server._rref = rref + native_storage_server._current_server._rref = rref @inlineCallbacks def test_ignored_non_enabled_plugin(self):