diff options
author | Erik Johnston <erik@matrix.org> | 2019-12-05 10:43:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-05 10:43:49 +0000 |
commit | ddbbfc9512cd9b66d3af57ab5e9fb1e5a0418913 (patch) | |
tree | eb061c5e86be7baf9428161715637a0f12bb2ff3 /tests/rest/admin | |
parent | Merge pull request #6470 from matrix-org/babolivier/port_db_ci_failure (diff) | |
parent | Newsfile (diff) | |
download | synapse-ddbbfc9512cd9b66d3af57ab5e9fb1e5a0418913.tar.xz |
Merge pull request #6464 from matrix-org/erikj/make_public_sql_base
Clean up SQLBaseStore private function usage
Diffstat (limited to 'tests/rest/admin')
-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(*)", |