From 40d70445b5331c7d351be1acf9d22e7807652ac2 Mon Sep 17 00:00:00 2001 From: Peter Van Dyken Date: Tue, 21 Feb 2023 11:10:43 -0500 Subject: [PATCH] Fix alias tests The test was checking if dataset.input_lists was equal to itself, rather than to dataset.entities --- snakebids/tests/test_datasets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snakebids/tests/test_datasets.py b/snakebids/tests/test_datasets.py index 9fe4ae47..a8b4ea73 100644 --- a/snakebids/tests/test_datasets.py +++ b/snakebids/tests/test_datasets.py @@ -37,7 +37,7 @@ def test_bids_dataset_aliases_are_correctly_set(self, component: BidsComponent): dataset = BidsDataset.from_iterable([component]) assert dataset.input_path == dataset.path assert dataset.input_zip_lists == dataset.zip_lists - assert dataset.input_lists == dataset.input_lists + assert dataset.input_lists == dataset.entities assert dataset.input_wildcards == dataset.wildcards