diff options
author | Erik Johnston <erikj@jki.re> | 2018-06-22 14:45:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-22 14:45:42 +0100 |
commit | f79abda87fdf7a57f9791121cd5d8eab57fd5bc9 (patch) | |
tree | 8e899c8176a7db4d5ecd57e3449ded904983e0ae /tests | |
parent | Merge pull request #3383 from matrix-org/rav/hacky_speedup_state_group_cache (diff) | |
parent | remove dead filter_events_for_clients (diff) | |
download | synapse-f79abda87fdf7a57f9791121cd5d8eab57fd5bc9.tar.xz |
Merge pull request #3427 from matrix-org/erikj/remove_filters
remove dead filter_events_for_clients
Diffstat (limited to 'tests')
-rw-r--r-- | tests/replication/slave/storage/test_account_data.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/replication/slave/storage/test_account_data.py b/tests/replication/slave/storage/test_account_data.py index da54d478ce..f47a42e45d 100644 --- a/tests/replication/slave/storage/test_account_data.py +++ b/tests/replication/slave/storage/test_account_data.py @@ -37,10 +37,6 @@ class SlavedAccountDataStoreTestCase(BaseSlavedStoreTestCase): "get_global_account_data_by_type_for_user", [TYPE, USER_ID], {"a": 1} ) - yield self.check( - "get_global_account_data_by_type_for_users", - [TYPE, [USER_ID]], {USER_ID: {"a": 1}} - ) yield self.master_store.add_account_data_for_user( USER_ID, TYPE, {"a": 2} @@ -50,7 +46,3 @@ class SlavedAccountDataStoreTestCase(BaseSlavedStoreTestCase): "get_global_account_data_by_type_for_user", [TYPE, USER_ID], {"a": 2} ) - yield self.check( - "get_global_account_data_by_type_for_users", - [TYPE, [USER_ID]], {USER_ID: {"a": 2}} - ) |