diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2022-09-21 15:39:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-21 14:39:01 +0000 |
commit | 8ae42ab8fa3c6b52d74c24daa7ca75a478fa4fbb (patch) | |
tree | deb3a81241a31a811c26e5bfd64ac56cfc1e83aa /tests/push/test_email.py | |
parent | Add cache invalidation across workers to module API (#13667) (diff) | |
download | synapse-8ae42ab8fa3c6b52d74c24daa7ca75a478fa4fbb.tar.xz |
Support enabling/disabling pushers (from MSC3881) (#13799)
Partial implementation of MSC3881
Diffstat (limited to 'tests/push/test_email.py')
-rw-r--r-- | tests/push/test_email.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/push/test_email.py b/tests/push/test_email.py index 7a3b0d6755..fd14568f55 100644 --- a/tests/push/test_email.py +++ b/tests/push/test_email.py @@ -114,7 +114,7 @@ class EmailPusherTests(HomeserverTestCase): ) self.pusher = self.get_success( - self.hs.get_pusherpool().add_pusher( + self.hs.get_pusherpool().add_or_update_pusher( user_id=self.user_id, access_token=self.token_id, kind="email", @@ -136,7 +136,7 @@ class EmailPusherTests(HomeserverTestCase): """ with self.assertRaises(SynapseError) as cm: self.get_success_or_raise( - self.hs.get_pusherpool().add_pusher( + self.hs.get_pusherpool().add_or_update_pusher( user_id=self.user_id, access_token=self.token_id, kind="email", |