diff options
author | Erik Johnston <erik@matrix.org> | 2018-02-20 12:40:44 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-02-20 12:40:44 +0000 |
commit | 25634ed1523b88f82edaa73124f3afd057fbb16d (patch) | |
tree | eb6616f6ea6a32b7cda0d706609400c3e0b0d8d9 /tests/storage | |
parent | Ensure all push actions are deleted from staging (diff) | |
download | synapse-25634ed1523b88f82edaa73124f3afd057fbb16d.tar.xz |
Fix test
Diffstat (limited to 'tests/storage')
-rw-r--r-- | tests/storage/test_event_push_actions.py | 2 |
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): |