Skip to content

Commit

Permalink
update test to fixed orientation system
Browse files Browse the repository at this point in the history
  • Loading branch information
36000 committed Oct 28, 2024
1 parent 26b9d93 commit eae1a55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AFQ/recognition/tests/test_other_bundles.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def test_clean_relative_to_other_core():

assert isinstance(cleaned_idx_core, np.ndarray)
assert cleaned_idx_core.shape[0] == this_bundle_sls_sample.shape[0]
if core == "inferior":
assert np.all(cleaned_idx_core == [False, True])
if core == "inferior" or core == "right":
assert np.all(cleaned_idx_core == [True, True])
else:
assert np.all(cleaned_idx_core == [False, False])

0 comments on commit eae1a55

Please sign in to comment.