(*args, **kwargs)
| 888 | stcs = [klass(data.astype(float), vertices, 0, 1)] |
| 889 | |
| 890 | def eltc(*args, **kwargs): |
| 891 | if call == "func": |
| 892 | return extract_label_time_course(stcs, *args, **kwargs) |
| 893 | else: |
| 894 | assert call == "meth" |
| 895 | return [stcs[0].extract_label_time_course(*args, **kwargs)] |
| 896 | |
| 897 | with pytest.raises(RuntimeError, match="atlas vox_mri_t does not match"): |
| 898 | eltc(fname_fs_t1, src, mri_resolution=mri_res) |
no test coverage detected