We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65bcf38 commit 5a77a39Copy full SHA for 5a77a39
moabb/tests/splits.py
@@ -54,5 +54,5 @@ def test_is_shuffling():
54
split.split(y, metadata), split_shuffle.split(y, metadata)
55
):
56
# 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
+ assert not np.array_equal(train, train_shuffle)
+ assert not np.array_equal(test, test_shuffle)
0 commit comments