Skip to content

Commit

Permalink
FIX: No remove
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Oct 1, 2023
1 parent ff93198 commit d2e9066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mne/viz/tests/test_topomap.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def test_plot_projs_topomap():
projs = read_proj(ecg_fname)
info = read_info(raw_fname)
plot_projs_topomap(projs, info=info, colorbar=True, **fast_test)
ax = plt.subplot(111)
_, ax = plt.subplots()
projs[3].plot_topomap(info)
plot_projs_topomap(projs[:1], info, axes=ax, **fast_test) # test axes
triux_info = read_info(triux_fname)
Expand Down

0 comments on commit d2e9066

Please sign in to comment.