From ff448610c152a07e035068d7dc67469304566e97 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 12 Oct 2022 14:20:48 +0000 Subject: [PATCH] tests: Flush the test configuration to disk Signed-off-by: Michael Tremer --- tests/test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test.py b/tests/test.py index 648f4578..e57a8499 100644 --- a/tests/test.py +++ b/tests/test.py @@ -71,5 +71,8 @@ class TestCase(unittest.IsolatedAsyncioTestCase): # Write configuration conf.write(f) + # Flush + f.flush() + # Initialize the backend self.backend = Backend(f.name) -- 2.47.2