From a8a6682397d524aaf28cc62aa10fa45cb9f936cc Mon Sep 17 00:00:00 2001 From: mschwoerer <82171591+mschwoer@users.noreply.github.com> Date: Sat, 21 Sep 2024 00:03:45 +0200 Subject: [PATCH] fix merged code --- tests/gui/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gui/conftest.py b/tests/gui/conftest.py index 0ed23323..43c95d13 100644 --- a/tests/gui/conftest.py +++ b/tests/gui/conftest.py @@ -30,7 +30,7 @@ def create_dataset_alphapept(): metadata_path = TEST_INPUT_FILES_PATH / "alphapept/metadata.csv" return DataSet( loader=loader, - metadata_path=str(metadata_path), + metadata_path_or_df=str(metadata_path), sample_column="sample", )