summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2018-02-26 14:28:35 +0000
committerGitHub <noreply@github.com>2018-02-26 14:28:35 +0000
commit73fe86684736b5509ad2bb27b74e4e99c0db7570 (patch)
tree63c99e09fabe0a21f9465b1c3bf14cbef493d708 /tests
parentMerge pull request #2900 from matrix-org/erikj/split_event_push_actions (diff)
parentMerge branch 'develop' of github.com:matrix-org/synapse into erikj/handle_unp... (diff)
downloadsynapse-73fe86684736b5509ad2bb27b74e4e99c0db7570.tar.xz
Merge pull request #2894 from matrix-org/erikj/handle_unpersisted_events_push
Ensure all push actions are deleted from staging
Diffstat (limited to 'tests')
-rw-r--r--tests/storage/test_event_push_actions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/storage/test_event_push_actions.py b/tests/storage/test_event_push_actions.py
index d483e7cf9e..dc90e5c243 100644
--- a/tests/storage/test_event_push_actions.py
+++ b/tests/storage/test_event_push_actions.py
@@ -75,7 +75,7 @@ class EventPushActionsStoreTestCase(tests.unittest.TestCase):
             )
             yield self.store.runInteraction(
                 "", self.store._set_push_actions_for_event_and_users_txn,
-                event,
+                [(event, None)], [(event, None)],
             )
 
         def _rotate(stream):