Skip to content

Commit 3a7e6d3

Browse files
committed
Fix test
1 parent 4cad3f1 commit 3a7e6d3

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

mne/io/fiff/tests/test_raw_fiff.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -500,8 +500,7 @@ def test_concatenate_raws_different_subtypes(tmp_path):
500500
raw_array.save(tmp_path / "temp_raw.fif", overwrite=True)
501501
raw_fiff = read_raw_fif(tmp_path / "temp_raw.fif", preload=True)
502502

503-
with pytest.warns(RuntimeWarning, match="raw files do not all have the same"):
504-
result = concatenate_raws([raw_fiff, raw_array])
503+
result = concatenate_raws([raw_fiff, raw_array])
505504
assert isinstance(result, RawArray)
506505
assert result.preload
507506
assert result.n_times == 2 * data.shape[1]

0 commit comments

Comments
 (0)