Skip to content

Commit

Permalink
Address Erics comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeilepp committed Feb 2, 2016
1 parent 2655458 commit bd73112
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mne/io/fiff/tests/test_raw_fiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -801,11 +801,11 @@ def test_crop():

# test shape consistency of cropped raw
data = np.zeros((1, 1002001))
info = create_info(['1'], 1000)
info = create_info(1, 1000)
raw = RawArray(data, info)
for tmin in np.arange(0, 1001, 100):
for tmin in range(0, 1001, 100):
raw1 = raw.crop(tmin=tmin, tmax=tmin + 2, copy=True)
assert_equal(raw1._data.shape, (1, 2001))
assert_equal(raw1[:][0].shape, (1, 2001))


@testing.requires_testing_data
Expand Down

0 comments on commit bd73112

Please sign in to comment.