Skip to content

Commit

Permalink
FIX: No n_jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Aug 29, 2018
1 parent cfe3b1e commit 0f3e649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mne/tests/test_source_estimate.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ def test_stc_methods():
stc_new = deepcopy(stc)
o_sfreq = 1.0 / stc.tstep
# note that using no padding for this STC reduces edge ringing...
stc_new.resample(2 * o_sfreq, npad=0, n_jobs=2)
stc_new.resample(2 * o_sfreq, npad=0)
assert (stc_new.data.shape[1] == 2 * stc.data.shape[1])
assert (stc_new.tstep == stc.tstep / 2)
stc_new.resample(o_sfreq, npad=0)
Expand Down

0 comments on commit 0f3e649

Please sign in to comment.