diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2019-01-24 21:31:54 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-24 21:31:54 +1100 |
commit | 58f6c4818337364dd9c6bf01062e7b0dadcb8a25 (patch) | |
tree | 505122b391e64d171dea79efb697ba1245d45010 /tests/storage | |
parent | Don't send IP addresses as SNI (#4452) (diff) | |
download | synapse-58f6c4818337364dd9c6bf01062e7b0dadcb8a25.tar.xz |
Use native UPSERTs where possible (#4306)
Diffstat (limited to 'tests/storage')
-rw-r--r-- | tests/storage/test_base.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/storage/test_base.py b/tests/storage/test_base.py index 829f47d2e8..452d76ddd5 100644 --- a/tests/storage/test_base.py +++ b/tests/storage/test_base.py @@ -49,6 +49,7 @@ class SQLBaseStoreTestCase(unittest.TestCase): self.db_pool.runWithConnection = runWithConnection config = Mock() + config._enable_native_upserts = False config.event_cache_size = 1 config.database_config = {"name": "sqlite3"} hs = TestHomeServer( |