diff options
author | Zay11Zay <zaysingletary@gmail.com> | 2020-04-14 15:37:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-14 15:37:28 -0400 |
commit | f1097e772042bf9bdfc3d5f71d1c37a4e13084da (patch) | |
tree | 5138b7bfbc4434fbaca85e50dfb927ddbbf783fb /tests | |
parent | Only register devices edu handler on the master process (#7255) (diff) | |
download | synapse-f1097e772042bf9bdfc3d5f71d1c37a4e13084da.tar.xz |
Fix the parameters of a test fixture (#7243)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/rest/client/v1/test_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rest/client/v1/test_events.py b/tests/rest/client/v1/test_events.py index ffb2de1505..b54b06482b 100644 --- a/tests/rest/client/v1/test_events.py +++ b/tests/rest/client/v1/test_events.py @@ -50,7 +50,7 @@ class EventStreamPermissionsTestCase(unittest.HomeserverTestCase): return hs - def prepare(self, hs, reactor, clock): + def prepare(self, reactor, clock, hs): # register an account self.user_id = self.register_user("sid1", "pass") |