From af91f8df188b12ed569c673a3c922e825c7a2055 Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Wed, 14 Feb 2024 20:24:19 +0100 Subject: [PATCH] Add black formatting --- zarr/tests/test_core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zarr/tests/test_core.py b/zarr/tests/test_core.py index 096ef77107..96bf61a9bf 100644 --- a/zarr/tests/test_core.py +++ b/zarr/tests/test_core.py @@ -2050,6 +2050,7 @@ def test_nbytes_stored(self): class TestArrayWithDBMStoreBerkeleyDB(TestArray): def create_store(self): import bsddb3 + path = mktemp(suffix=".dbm") atexit.register(os.remove, path) store = DBMStore(path, flag="n", open=bsddb3.btopen) @@ -2771,6 +2772,7 @@ def test_nbytes_stored(self): class TestArrayWithDBMStoreV3BerkeleyDB(TestArrayV3): def create_store(self) -> DBMStoreV3: import bsddb3 + path = mktemp(suffix=".dbm") atexit.register(os.remove, path) store = DBMStoreV3(path, flag="n", open=bsddb3.btopen)