Skip to content

Commit 5a77a39

Browse files
[FIX] pre-commit
1 parent 65bcf38 commit 5a77a39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

moabb/tests/splits.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ def test_is_shuffling():
5454
split.split(y, metadata), split_shuffle.split(y, metadata)
5555
):
5656
# Check if the output is the same as the input
57-
assert np.array_equal(train, train_shuffle) == False
58-
assert np.array_equal(test, test_shuffle) == False
57+
assert not np.array_equal(train, train_shuffle)
58+
assert not np.array_equal(test, test_shuffle)

0 commit comments

Comments
 (0)