Skip to content

Commit 9c954ac

Browse files
committed
FIX: Comment
1 parent 7bf0cee commit 9c954ac

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

mne/viz/tests/test_ica.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,9 @@ def test_plot_ica_properties_reject(kind):
309309
ica.fit(raw, reject=dict(eeg=500e-6))
310310
log = log.getvalue()
311311
assert log.count("Artifact detected") == 1 # dropped one epoch
312-
ica.plot_properties(raw, picks=[0], show=False)
312+
fig = ica.plot_properties(raw, picks=[0], show=False)
313+
# TODO: Assert stuff about axis limits, etc.
314+
assert fig
313315

314316

315317
def test_plot_ica_sources(raw_orig, browser_backend, monkeypatch):

0 commit comments

Comments
 (0)