Skip to content

Commit 825059e

Browse files
committed
One last _onmove in tests that was not caught by revert
1 parent 701042d commit 825059e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/tests/test_widgets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1671,7 +1671,7 @@ def test_MultiCursor(horizOn, vertOn):
16711671
multi.horizOn = not multi.horizOn
16721672
multi.vertOn = not multi.vertOn
16731673
event = mock_event(ax1, xdata=.5, ydata=.25)
1674-
multi._onmove(event)
1674+
multi.onmove(event)
16751675
assert len([line for line in multi.vlines if line.get_visible()]) == (
16761676
0 if vertOn else 2)
16771677
assert len([line for line in multi.hlines if line.get_visible()]) == (

0 commit comments

Comments
 (0)