From 9c32f07e87d22480784ad62b987f27243b866a09 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__":