From ec6477534303ed9f0a95370dde87bc2dbb978a01 Mon Sep 17 00:00:00 2001 From: Tpt Date: Sun, 19 Mar 2023 18:07:50 +0100 Subject: [PATCH] Python: Fixes the secondary test on Windows --- python/tests/test_store.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/tests/test_store.py b/python/tests/test_store.py index bd7bb770..8883b7ef 100644 --- a/python/tests/test_store.py +++ b/python/tests/test_store.py @@ -367,6 +367,8 @@ class TestStore(unittest.TestCase): store.remove(quad) store.flush() self.assertEqual(list(secondary_store), []) + del secondary_store + del store if __name__ == "__main__":