aboutsummaryrefslogtreecommitdiff
path: root/bindings/python-cffi/tests/test_config.py
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2022-01-09 19:34:58 -0400
committerDavid Bremner <david@tethera.net>2022-01-09 19:34:58 -0400
commit63d3b2b5cf8702b5fecea77392ce46f8a8249175 (patch)
treece8274b3260577a70c6cc4e8c02f1ba013b8fe09 /bindings/python-cffi/tests/test_config.py
parent22e04ed01acc115b7fb25b60231014f585f11c4a (diff)
parent51c287ead807b6e3830bc5d393a7e9a89f36db86 (diff)
Merge tag '0.34.3'
notmuch 0.34.3 release
Diffstat (limited to 'bindings/python-cffi/tests/test_config.py')
-rw-r--r--bindings/python-cffi/tests/test_config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/python-cffi/tests/test_config.py b/bindings/python-cffi/tests/test_config.py
index 1b2695f5..67b0dea4 100644
--- a/bindings/python-cffi/tests/test_config.py
+++ b/bindings/python-cffi/tests/test_config.py
@@ -23,9 +23,9 @@ class TestIter:
def test_set_get(self, maildir):
# Ensure get-set works from different db objects
- with dbmod.Database.create(maildir.path) as db0:
+ with dbmod.Database.create(maildir.path, config=dbmod.Database.CONFIG.EMPTY) as db0:
db0.config['spam'] = 'ham'
- with dbmod.Database(maildir.path) as db1:
+ with dbmod.Database(maildir.path, config=dbmod.Database.CONFIG.EMPTY) as db1:
assert db1.config['spam'] == 'ham'
def test_get_keyerror(self, db):