From 1a4f3cb2611abbee0adcc028c350d7a84b6c59e5 Mon Sep 17 00:00:00 2001 From: "janni.roebbecke" Date: Thu, 30 Nov 2023 12:05:58 +0100 Subject: [PATCH] test_create_histograms tests the right Method now --- .../data_preprocessing/test_plots_data_preprocessing.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/protzilla/data_preprocessing/test_plots_data_preprocessing.py b/tests/protzilla/data_preprocessing/test_plots_data_preprocessing.py index 4c94b75eb..4aaabb0e2 100644 --- a/tests/protzilla/data_preprocessing/test_plots_data_preprocessing.py +++ b/tests/protzilla/data_preprocessing/test_plots_data_preprocessing.py @@ -93,11 +93,10 @@ def test_create_histograms( # should throw Value Error with pytest.raises(ValueError): - # TODO: 304 - create_box_plots( + create_histograms( dataframe_a=input_imputation_df, dataframe_b=assertion_df_knn, - group_by="wrong_group_by", + visual_transformation="wrong_visual_transformation", ) return