From 0a203c47da9bf198c387d7040dd664e923456ba0 Mon Sep 17 00:00:00 2001 From: zogkoa Date: Mon, 24 Jun 2024 13:32:45 +0100 Subject: [PATCH] Fix file paths --- tests/test_ratio_of_means.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/test_ratio_of_means.py b/tests/test_ratio_of_means.py index 6d57c9bf..0d094126 100644 --- a/tests/test_ratio_of_means.py +++ b/tests/test_ratio_of_means.py @@ -34,16 +34,16 @@ "23_class_change_C_C_FI", "24_class_change_R_BI_R", "25_class_change_C_FI_FI", - # '26_C_FI_FI_NS_BI_BI_R_filtered', #not yet implemented - # '27_BI_BI_R_NS_R_FI_FI_filtered', #not yet implemented + '26_C_FI_FI_NS_BI_BI_R_filtered', #not yet implemented + '27_BI_BI_R_NS_R_FI_FI_filtered', #not yet implemented # '28_link_columns_filtered', #not yet implemented + ASAP-333 - # '29_mixed_data_filtered', #not yet implemented - # '30_class_change_C_C_FI_filtered', #not yet implemented + '29_mixed_data_filtered', #not yet implemented + '30_class_change_C_C_FI_filtered', #not yet implemented "31_no_response", # bug fixed ASAP-402 "32_divide_by_zero", "33_multi_variable_C_BI_R", # issue with matches ASAP-427 - # '34_multi_variable_C_BI_R_filtered', #not yet implemented - # '35_BI_BI_R_FI_FI_R_FI_alternating_filtered' #not yet implemented + '34_multi_variable_C_BI_R_filtered', #not yet implemented + '35_BI_BI_R_FI_FI_R_FI_alternating_filtered' #not yet implemented ] @@ -54,12 +54,12 @@ class TestRatioOfMeans: def test_ratio_of_means(self, base_file_name): input_data = pd.read_csv( - "D:/monthly-business-survey-results/tests/data/ratio_of_means/" + scenario_path_prefix + base_file_name + "_input.csv" ) expected_output = pd.read_csv( - "D:/monthly-business-survey-results/tests/data/ratio_of_means/" + scenario_path_prefix + base_file_name + "_output.csv" )