diff options
author | Jonathan de Jong <jonathan@automatia.nl> | 2020-10-15 21:29:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-15 15:29:13 -0400 |
commit | 6b5a115c0a0f9036444cd8686b32afbdf5334915 (patch) | |
tree | 168f7026466ec07269c3cc4882f7572ac60fd64a /tests/replication/test_federation_ack.py | |
parent | Send some ephemeral events to appservices (#8437) (diff) | |
download | synapse-6b5a115c0a0f9036444cd8686b32afbdf5334915.tar.xz |
Solidify the HomeServer constructor. (#8515)
This implements a more standard API for instantiating a homeserver and moves some of the dependency injection into the test suite. More concretely this stops using `setattr` on all `kwargs` passed to `HomeServer`.
Diffstat (limited to 'tests/replication/test_federation_ack.py')
-rw-r--r-- | tests/replication/test_federation_ack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/replication/test_federation_ack.py b/tests/replication/test_federation_ack.py index 23be1167a3..1853667558 100644 --- a/tests/replication/test_federation_ack.py +++ b/tests/replication/test_federation_ack.py @@ -31,7 +31,7 @@ class FederationAckTestCase(HomeserverTestCase): return config def make_homeserver(self, reactor, clock): - hs = self.setup_test_homeserver(homeserverToUse=GenericWorkerServer) + hs = self.setup_test_homeserver(homeserver_to_use=GenericWorkerServer) return hs |