From b57995e31ce40c2c6ae33afdd2e71abe269b75bf Mon Sep 17 00:00:00 2001 From: Clair Mould <86794332+clmould@users.noreply.github.com> Date: Fri, 28 Aug 2026 09:34:10 +0100 Subject: [PATCH] Change set_filenames in single_run fixture to use temp_input_file instead of tmp_path --- tests/unit/test_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_main.py b/tests/unit/test_main.py index 98de7df22b..e991658308 100644 --- a/tests/unit/test_main.py +++ b/tests/unit/test_main.py @@ -36,7 +36,7 @@ def single_run(monkeypatch, input_file, tmp_path): single_run.filepath = tmp_path single_run.models = None single_run.data = DataStructure() - single_run.set_filenames(tmp_path) + single_run.set_filenames(temp_input_file) single_run.initialise() return single_run