diff options
author | Erik Johnston <erik@matrix.org> | 2019-12-04 10:15:55 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-12-04 16:23:43 +0000 |
commit | ee86abb2d6e9c7d553858e814b4343bcf95af75a (patch) | |
tree | 381a014802ac21a552d528c6709481656b730df9 /tests/rest | |
parent | Don't call SQLBaseStore methods from outside stores (diff) | |
download | synapse-ee86abb2d6e9c7d553858e814b4343bcf95af75a.tar.xz |
Remove underscore from SQLBaseStore functions
Diffstat (limited to 'tests/rest')
-rw-r--r-- | tests/rest/admin/test_admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rest/admin/test_admin.py b/tests/rest/admin/test_admin.py index 9575058252..124ce0768a 100644 --- a/tests/rest/admin/test_admin.py +++ b/tests/rest/admin/test_admin.py @@ -632,7 +632,7 @@ class PurgeRoomTestCase(unittest.HomeserverTestCase): "state_groups_state", ): count = self.get_success( - self.store._simple_select_one_onecol( + self.store.simple_select_one_onecol( table=table, keyvalues={"room_id": room_id}, retcol="COUNT(*)", |