From 8aceb2c3b0bf6eb0dfda236374a9d48cedef9c69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Roth?= Date: Mon, 5 Jan 2026 12:18:21 +0100 Subject: [PATCH] tests: remove temporary folders --- system/testout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/testout.py b/system/testout.py index f7dc134d..d63d6316 100644 --- a/system/testout.py +++ b/system/testout.py @@ -3,7 +3,7 @@ import tempfile class TestOut: def __init__(self): - self.tmp_file = tempfile.NamedTemporaryFile(delete=False) + self.tmp_file = tempfile.NamedTemporaryFile(delete=True) self.read_pos = 0 def fileno(self):