aboutsummaryrefslogtreecommitdiff
path: root/bindings/python-cffi/tests/test_database.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_database.py
parent22e04ed01acc115b7fb25b60231014f585f11c4a (diff)
parent51c287ead807b6e3830bc5d393a7e9a89f36db86 (diff)
Merge tag '0.34.3'
notmuch 0.34.3 release
Diffstat (limited to 'bindings/python-cffi/tests/test_database.py')
-rw-r--r--bindings/python-cffi/tests/test_database.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/python-cffi/tests/test_database.py b/bindings/python-cffi/tests/test_database.py
index 9b3219c0..f1d12ea6 100644
--- a/bindings/python-cffi/tests/test_database.py
+++ b/bindings/python-cffi/tests/test_database.py
@@ -13,7 +13,7 @@ import notmuch2._message as message
@pytest.fixture
def db(maildir):
- with dbmod.Database.create(maildir.path) as db:
+ with dbmod.Database.create(maildir.path, config=notmuch2.Database.CONFIG.EMPTY) as db:
yield db
@@ -293,7 +293,7 @@ class TestQuery:
maildir.deliver(body='baz',
headers=[('In-Reply-To', '<{}>'.format(msgid))])
notmuch('new')
- with dbmod.Database(maildir.path, 'rw') as db:
+ with dbmod.Database(maildir.path, 'rw', config=notmuch2.Database.CONFIG.EMPTY) as db:
yield db
def test_count_messages(self, db):