Skip to content

Commit

Permalink
Fix alias tests
Browse files Browse the repository at this point in the history
The test was checking if dataset.input_lists was equal to itself, rather
than to dataset.entities
  • Loading branch information
pvandyken committed Feb 21, 2023
1 parent ab34462 commit 402d3a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snakebids/tests/test_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit 402d3a4

Please sign in to comment.