From ecbf7159f15891172bbe0b8656e0ffa30833028d Mon Sep 17 00:00:00 2001 From: Mateusz Masiarz Date: Thu, 21 Mar 2024 15:38:14 +0100 Subject: [PATCH] Fix tests --- tests/commands/run/test_unit.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/commands/run/test_unit.py b/tests/commands/run/test_unit.py index 6ca11b8e..262194a1 100644 --- a/tests/commands/run/test_unit.py +++ b/tests/commands/run/test_unit.py @@ -39,7 +39,8 @@ def test_execution(create_package, time_tool): config = yaml.load(config_file, Loader=yaml.FullLoader) os.makedirs(paths.get_executions_path(solution), exist_ok=True) - result = command.run_solution((solution, paths.get_executables_path(executable), test, config['time_limit'], config['memory_limit'], oiejq.get_oiejq_path())) + result = command.run_solution((solution, paths.get_executables_path(executable), test, config['time_limit'], + config['memory_limit'], oiejq.get_oiejq_path(), paths.get_executions_path())) assert result.Status == Status.OK