tests: remove temporary folders

This commit is contained in:
André Roth
2026-01-05 12:18:21 +01:00
parent 01b5aeb544
commit 8aceb2c3b0
+1 -1
View File
@@ -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):