From a05b9af16c3db0b16a882a759c9112f31cf2f88b Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Mon, 3 Feb 2025 09:51:42 -0500 Subject: [PATCH] Fix test. --- cubids/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cubids/utils.py b/cubids/utils.py index f91b989a..ad539f9e 100644 --- a/cubids/utils.py +++ b/cubids/utils.py @@ -89,7 +89,7 @@ def _file_to_entity_set(filename): Examples -------- >>> _file_to_entity_set("sub-01_ses-01_task-rest_bold.nii.gz") - 'task-rest_suffix-bold' + 'session-01_suffix-bold_task-rest' """ entities = parse_file_entities(str(filename)) return _entities_to_entity_set(entities)