Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
fix: revert stylistic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
esavary committed Apr 5, 2024
1 parent 5155f9f commit 9420ce5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/test_splitting.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@
# https://www.nipreps.org/community/licensing/
#
"""Unit test testing the lovo_split function."""

import numpy as np

from eddymotion.data.dmri import DWI
from eddymotion.data.splitting import lovo_split

Expand Down Expand Up @@ -53,7 +51,7 @@ def test_lovo_split(datadir):

# Apply the lovo_split function at the specified index
(train_data, train_gradients), \
(test_data, test_gradients) = lovo_split(data, index)
(test_data, test_gradients) = lovo_split(data, index)

# Check if the test data contains only 1s
# and the train data contains only 0s after the split
Expand Down

0 comments on commit 9420ce5

Please sign in to comment.