We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cad3f1 commit 3a7e6d3Copy full SHA for 3a7e6d3
1 file changed
mne/io/fiff/tests/test_raw_fiff.py
@@ -500,8 +500,7 @@ def test_concatenate_raws_different_subtypes(tmp_path):
500
raw_array.save(tmp_path / "temp_raw.fif", overwrite=True)
501
raw_fiff = read_raw_fif(tmp_path / "temp_raw.fif", preload=True)
502
503
- with pytest.warns(RuntimeWarning, match="raw files do not all have the same"):
504
- result = concatenate_raws([raw_fiff, raw_array])
+ result = concatenate_raws([raw_fiff, raw_array])
505
assert isinstance(result, RawArray)
506
assert result.preload
507
assert result.n_times == 2 * data.shape[1]
0 commit comments