Skip to content

Commit

Permalink
Fix file paths
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonZogk committed Jun 24, 2024
1 parent 1eedd15 commit 0a203c4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/test_ratio_of_means.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
]


Expand All @@ -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"
)
Expand Down

0 comments on commit 0a203c4

Please sign in to comment.