From: Michael Tremer Date: Wed, 12 Oct 2022 14:20:48 +0000 (+0000) Subject: tests: Flush the test configuration to disk X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff448610c152a07e035068d7dc67469304566e97;p=pbs.git tests: Flush the test configuration to disk Signed-off-by: Michael Tremer --- 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)