summary refs log tree commit diff
path: root/tests/storage/test_base.py
diff options
context:
space:
mode:
authorDirk Klimpel <5740567+dklimpel@users.noreply.github.com>2022-05-23 13:23:26 +0200
committerGitHub <noreply@github.com>2022-05-23 11:23:26 +0000
commit444588c5fc5e4fd0f3796d389fe5f062acc55286 (patch)
tree9fc7c743e6f3b19361f61035a0e6c381e782e947 /tests/storage/test_base.py
parentFix Complement `TestCanRegisterAdmin` with workers, by adding Complement's sh... (diff)
downloadsynapse-444588c5fc5e4fd0f3796d389fe5f062acc55286.tar.xz
Add some type hints to tests files (#12833)
Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
Diffstat (limited to 'tests/storage/test_base.py')
-rw-r--r--tests/storage/test_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/storage/test_base.py b/tests/storage/test_base.py
index a8ffb52c05..cce8e75c74 100644
--- a/tests/storage/test_base.py
+++ b/tests/storage/test_base.py
@@ -60,7 +60,7 @@ class SQLBaseStoreTestCase(unittest.TestCase):
         db = DatabasePool(Mock(), Mock(config=sqlite_config), fake_engine)
         db._db_pool = self.db_pool
 
-        self.datastore = SQLBaseStore(db, None, hs)
+        self.datastore = SQLBaseStore(db, None, hs)  # type: ignore[arg-type]
 
     @defer.inlineCallbacks
     def test_insert_1col(self):