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 7bf0cee commit 9c954acCopy full SHA for 9c954ac
1 file changed
mne/viz/tests/test_ica.py
@@ -309,7 +309,9 @@ def test_plot_ica_properties_reject(kind):
309
ica.fit(raw, reject=dict(eeg=500e-6))
310
log = log.getvalue()
311
assert log.count("Artifact detected") == 1 # dropped one epoch
312
- ica.plot_properties(raw, picks=[0], show=False)
+ fig = ica.plot_properties(raw, picks=[0], show=False)
313
+ # TODO: Assert stuff about axis limits, etc.
314
+ assert fig
315
316
317
def test_plot_ica_sources(raw_orig, browser_backend, monkeypatch):
0 commit comments