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 Aug 15, 2023
1 parent 2879e2f commit 3fe3276
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mne/tests/test_epochs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1490,7 +1490,7 @@ def factory(n_epochs, metadata=False, concat=False):
n_ch, fs = 100, 1000.0
n_times = int(round(fs * (n_epochs + 1)))
raw_data = np.random.RandomState(0).randn(n_ch, n_times)
raw = mne.io.RawArray(raw_data , mne.create_info(n_ch, fs))
raw = mne.io.RawArray(raw_data, mne.create_info(n_ch, fs))
events = mne.make_fixed_length_events(raw, 1)
epochs = mne.Epochs(raw, events)
if metadata:
Expand Down Expand Up @@ -1641,12 +1641,12 @@ def test_saved_fname_no_splitting(
"neuromag",
"test-epo.fif",
"test-epo-1.fif",
marks=pytest.mark.xfail(reason="bug")
marks=pytest.mark.xfail(reason="bug"),
),
("bids", "test_epo.fif", "test_epo.fif"),
("bids", "test_epo.fif", "test_split-01_epo.fif"),
("bids", "test_epo.fif", "test_split-02_epo.fif"),
]
],
)
def test_splits_overwrite(
tmp_path, epochs_to_split, split_naming, dst_fname, existing_fname
Expand Down

0 comments on commit 3fe3276

Please sign in to comment.