Skip to content

Commit

Permalink
Forgot to change one line
Browse files Browse the repository at this point in the history
  • Loading branch information
spirosmaggioros committed Dec 10, 2024
1 parent 68181ab commit 9a288ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ def testing_get_bids_prefix() -> None:
temp_file = "test-1"
assert get_bids_prefix(temp_file) == "test"
temp_file = "test"
assert get_bids_prefix(temp_file) == ""
assert get_bids_prefix(temp_file) == "test"

temp_folder = "test_1234"
assert get_bids_prefix(temp_folder, True) == "test"
temp_folder = "test_1"
assert get_bids_prefix(temp_folder, True) == "test"
temp_folder = "test"
assert get_bids_prefix(temp_folder, True) == ""
assert get_bids_prefix(temp_folder, True) == "test"

def testing_collect_T1() -> None:
os.system("mkdir test_collect_T1")
Expand Down

0 comments on commit 9a288ec

Please sign in to comment.