Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 10, 2024
1 parent fd4c75f commit a685b89
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mne/tests/test_epochs.py
Original file line number Diff line number Diff line change
Expand Up @@ -3293,7 +3293,11 @@ def test_drop_epochs():
selection_tuple = epochs_tuple.selection.copy()
epochs_tuple.drop((2, 3, 4), reason=([["list"], "string", ("tuple",)]))
n_events = len(epochs.events)
assert [epochs_tuple.drop_log[k] for k in selection_tuple[[2, 3, 4]]] == [("list",), ("string",), ("tuple",)]
assert [epochs_tuple.drop_log[k] for k in selection_tuple[[2, 3, 4]]] == [
("list",),
("string",),
("tuple",),
]


@pytest.mark.parametrize("preload", (True, False))
Expand Down

0 comments on commit a685b89

Please sign in to comment.