diff options
author | Andrew Morgan <andrewm@element.io> | 2022-08-04 15:31:14 +0100 |
---|---|---|
committer | Andrew Morgan <andrewm@element.io> | 2022-08-04 15:31:14 +0100 |
commit | ba57e17f02f8a4d21a6b3195554c302225b8ab49 (patch) | |
tree | 26b131b25b97d2429d68e7a21ded2a54642c462b | |
parent | Update some outdated information on `sso_mapping_providers.md` (#13449) (diff) | |
download | synapse-ba57e17f02f8a4d21a6b3195554c302225b8ab49.tar.xz |
Allow the simple_upsert database unit test case to run
Test cases won't be picked up by trial unless the class name ends in TestCase :)
-rw-r--r-- | tests/storage/test__base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/storage/test__base.py b/tests/storage/test__base.py index 09cb06d614..7a54596232 100644 --- a/tests/storage/test__base.py +++ b/tests/storage/test__base.py @@ -24,7 +24,7 @@ from synapse.util import Clock from tests import unittest -class UpdateUpsertManyTests(unittest.HomeserverTestCase): +class UpdateUpsertManyTestCase(unittest.HomeserverTestCase): def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None: self.storage = hs.get_datastores().main |