diff options
author | Richard van der Hoff <github@rvanderhoff.org.uk> | 2017-10-31 17:20:47 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-31 17:20:47 +0000 |
commit | a72e4e3e2860694013dade663f46b82160d08add (patch) | |
tree | c868dffb9cf270632649e54fe4ba7f4cc685b188 /tests | |
parent | Merge pull request #2611 from matrix-org/dbkr/port_script_drop_nuls (diff) | |
parent | fix tests (diff) | |
download | synapse-a72e4e3e2860694013dade663f46b82160d08add.tar.xz |
Merge pull request #2610 from matrix-org/rav/schema_for_pw_providers
DB schema interface for password auth providers
Diffstat (limited to 'tests')
-rw-r--r-- | tests/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/utils.py b/tests/utils.py index d2ebce4b2e..ed8a7360f5 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -310,6 +310,7 @@ class SQLiteMemoryDbPool(ConnectionPool, object): ) self.config = Mock() + self.config.password_providers = [] self.config.database_config = {"name": "sqlite3"} def prepare(self): |