summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2018-06-22 14:45:42 +0100
committerGitHub <noreply@github.com>2018-06-22 14:45:42 +0100
commitf79abda87fdf7a57f9791121cd5d8eab57fd5bc9 (patch)
tree8e899c8176a7db4d5ecd57e3449ded904983e0ae /tests
parentMerge pull request #3383 from matrix-org/rav/hacky_speedup_state_group_cache (diff)
parentremove dead filter_events_for_clients (diff)
downloadsynapse-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.py8
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}}
-        )