From 83cc4e1e28018b680888eef5f7ce9e1d6c1d36f2 Mon Sep 17 00:00:00 2001 From: sylvmara Date: Mon, 17 Feb 2025 16:15:32 +0100 Subject: [PATCH] Another change to enable testing on ubuntu --- .../cucumber/features/steps/common_steps/study_input_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/cucumber/features/steps/common_steps/study_input_handler.py b/src/tests/cucumber/features/steps/common_steps/study_input_handler.py index d5fa5d9b56..40154f04c6 100644 --- a/src/tests/cucumber/features/steps/common_steps/study_input_handler.py +++ b/src/tests/cucumber/features/steps/common_steps/study_input_handler.py @@ -85,7 +85,7 @@ def set_reserve_value(self, area, sectionName, variable, value): def copy_reserve_ini_from_file(self,area, testName): # File path - fileToReplace = self.files_path["reserves"] / area / "reserves.ini" + fileToReplace = self.files_path["reserves"] / area.lower() / "reserves.ini" testFile = testName +".ini" fileToCopy = self.files_path["reserve_ini_folder"] / testFile shutil.copyfile(fileToCopy, fileToReplace)