diff options
author | Sean Quah <8349537+squahtx@users.noreply.github.com> | 2022-03-09 18:45:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-09 18:45:21 +0000 |
commit | a4c1fdb44a16471964ed6a347be6a191102f5c07 (patch) | |
tree | 174840f988cc6cc888ae6b1f560eca96227eab0d /tests/storage | |
parent | Add third_party module callbacks to check if a user can delete a room and dea... (diff) | |
download | synapse-a4c1fdb44a16471964ed6a347be6a191102f5c07.tar.xz |
Remove dead code in `tests/storage/test_database.py` (#12197)
Signed-off-by: Sean Quah <seanq@element.io>
Diffstat (limited to 'tests/storage')
-rw-r--r-- | tests/storage/test_database.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/storage/test_database.py b/tests/storage/test_database.py index 6fbac0ab14..8597867563 100644 --- a/tests/storage/test_database.py +++ b/tests/storage/test_database.py @@ -13,26 +13,10 @@ # limitations under the License. from synapse.storage.database import make_tuple_comparison_clause -from synapse.storage.engines import BaseDatabaseEngine from tests import unittest -def _stub_db_engine(**kwargs) -> BaseDatabaseEngine: - # returns a DatabaseEngine, circumventing the abc mechanism - # any kwargs are set as attributes on the class before instantiating it - t = type( - "TestBaseDatabaseEngine", - (BaseDatabaseEngine,), - dict(BaseDatabaseEngine.__dict__), - ) - # defeat the abc mechanism - t.__abstractmethods__ = set() - for k, v in kwargs.items(): - setattr(t, k, v) - return t(None, None) - - class TupleComparisonClauseTestCase(unittest.TestCase): def test_native_tuple_comparison(self): clause, args = make_tuple_comparison_clause([("a", 1), ("b", 2)]) |