diff --git a/internal/tests/pytests/wrappers/stat_analysis/test_stat_analysis.py b/internal/tests/pytests/wrappers/stat_analysis/test_stat_analysis.py index 0a5ac4f3a..a082ac2ab 100644 --- a/internal/tests/pytests/wrappers/stat_analysis/test_stat_analysis.py +++ b/internal/tests/pytests/wrappers/stat_analysis/test_stat_analysis.py @@ -765,14 +765,14 @@ def test_run_stat_analysis(metplus_config): @pytest.mark.parametrize( 'data_type, config_list, expected_list', [ - ('FCST', '\"0,*,*\"', ["0,*,*"]), - ('FCST', '\"(0,*,*)\"', ["0,*,*"]), - ('FCST', '\"0,*,*\", \"1,*,*\"', ["0,*,*", "1,*,*"]), - ('FCST', '\"(0,*,*)\", \"(1,*,*)\"', ["0,*,*", "1,*,*"]), - ('OBS', '\"0,*,*\"', ["0,*,*"]), - ('OBS', '\"(0,*,*)\"', ["0,*,*"]), - ('OBS', '\"0,*,*\", \"1,*,*\"', ["0,*,*", "1,*,*"]), - ('OBS', '\"(0,*,*)\", \"(1,*,*)\"', ["0,*,*", "1,*,*"]), + ('FCST', '\"0,*,*\"', ['"0,*,*"']), + ('FCST', '\"(0,*,*)\"', ['"0,*,*"']), + ('FCST', '\"0,*,*\", \"1,*,*\"', ['"0,*,*"', '"1,*,*"']), + ('FCST', '\"(0,*,*)\", \"(1,*,*)\"', ['"0,*,*"', '"1,*,*"']), + ('OBS', '\"0,*,*\"', ['"0,*,*"']), + ('OBS', '\"(0,*,*)\"', ['"0,*,*"']), + ('OBS', '\"0,*,*\", \"1,*,*\"', ['"0,*,*"', '"1,*,*"']), + ('OBS', '\"(0,*,*)\", \"(1,*,*)\"', ['"0,*,*"', '"1,*,*"']), ] ) @pytest.mark.wrapper_d