summary refs log tree commit diff
path: root/tests/federation/test_federation_client.py
diff options
context:
space:
mode:
authorDavid Robertson <davidr@element.io>2022-07-12 19:46:32 +0100
committerGitHub <noreply@github.com>2022-07-12 18:46:32 +0000
commit52a0c8f2f7fc5a6dad02d3b6bdae90f3e58842c9 (patch)
treeeeb8950fa40ccbb10f339456d1c9631eea99a087 /tests/federation/test_federation_client.py
parentDrop support for delegating email validation (#13192) (diff)
downloadsynapse-52a0c8f2f7fc5a6dad02d3b6bdae90f3e58842c9.tar.xz
Rename test case method to `add_hashes_and_signatures_from_other_server` (#13255)
Diffstat (limited to 'tests/federation/test_federation_client.py')
-rw-r--r--tests/federation/test_federation_client.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/federation/test_federation_client.py b/tests/federation/test_federation_client.py

index 268a48d7ba..d2bda07198 100644 --- a/tests/federation/test_federation_client.py +++ b/tests/federation/test_federation_client.py
@@ -45,7 +45,7 @@ class FederationClientTest(FederatingHomeserverTestCase): # mock up some events to use in the response. # In real life, these would have things in `prev_events` and `auth_events`, but that's # a bit annoying to mock up, and the code under test doesn't care, so we don't bother. - create_event_dict = self.add_hashes_and_signatures( + create_event_dict = self.add_hashes_and_signatures_from_other_server( { "room_id": test_room_id, "type": "m.room.create", @@ -57,7 +57,7 @@ class FederationClientTest(FederatingHomeserverTestCase): "origin_server_ts": 500, } ) - member_event_dict = self.add_hashes_and_signatures( + member_event_dict = self.add_hashes_and_signatures_from_other_server( { "room_id": test_room_id, "type": "m.room.member", @@ -69,7 +69,7 @@ class FederationClientTest(FederatingHomeserverTestCase): "origin_server_ts": 600, } ) - pl_event_dict = self.add_hashes_and_signatures( + pl_event_dict = self.add_hashes_and_signatures_from_other_server( { "room_id": test_room_id, "type": "m.room.power_levels",