From 9c62f2d6d114a9ae445185cb583f0b2265fc2b5c Mon Sep 17 00:00:00 2001 From: antonneubauer Date: Sat, 25 Nov 2023 09:31:42 +0100 Subject: [PATCH] create path to test data with / operator --- tests/protzilla/data_integration/test_enrichment_analysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/protzilla/data_integration/test_enrichment_analysis.py b/tests/protzilla/data_integration/test_enrichment_analysis.py index 5dfdcc5d1..37dbf5269 100644 --- a/tests/protzilla/data_integration/test_enrichment_analysis.py +++ b/tests/protzilla/data_integration/test_enrichment_analysis.py @@ -35,7 +35,7 @@ @pytest.fixture def data_folder_tests(): - return PROJECT_PATH / "tests/test_data/enrichment_data" + return PROJECT_PATH / "tests" / "test_data" / "enrichment_data" @patch("restring.restring.get_functional_enrichment")