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 701042d commit 825059eCopy full SHA for 825059e
lib/matplotlib/tests/test_widgets.py
@@ -1671,7 +1671,7 @@ def test_MultiCursor(horizOn, vertOn):
1671
multi.horizOn = not multi.horizOn
1672
multi.vertOn = not multi.vertOn
1673
event = mock_event(ax1, xdata=.5, ydata=.25)
1674
- multi._onmove(event)
+ multi.onmove(event)
1675
assert len([line for line in multi.vlines if line.get_visible()]) == (
1676
0 if vertOn else 2)
1677
assert len([line for line in multi.hlines if line.get_visible()]) == (
0 commit comments