Skip to content

Commit 8c63131

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e04159b commit 8c63131

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

mne/channels/tests/test_interpolation.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -560,9 +560,7 @@ def test_interpolate_to_meg(monkeypatch):
560560
kwargs = dict(mode="point", origin=(0.0, 0.0, 0.04))
561561
evoked_ctf = evoked.interpolate_to("ctf151", **kwargs)
562562
# test whether .info["sfreq"] was preserved across interpolation
563-
assert (
564-
evoked_ctf.info["sfreq"] == evoked.info["sfreq"]
565-
)
563+
assert evoked_ctf.info["sfreq"] == evoked.info["sfreq"]
566564
evoked_ctf.pick(evoked_ctf.ch_names[::4])
567565
evoked_rt = evoked_ctf.interpolate_to("neuromag", **kwargs).pick(evoked.ch_names)
568566
corrcoef = np.corrcoef(evoked.data.ravel(), evoked_rt.data.ravel())[0, 1]

0 commit comments

Comments
 (0)