Skip to content

Commit fc4e025

Browse files
committed
fix test_LogLocator in test_ticker.py
1 parent 38c29c6 commit fc4e025

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/tests/test_ticker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def test_AutoMinorLocator():
5353

5454
def test_LogLocator():
5555
loc = mticker.LogLocator(numticks=5)
56-
pytest.raises(ValueError, loc.tick_values(0, 1000))
56+
pytest.raises(ValueError, loc.tick_values, 0, 1000)
5757

5858
test_value = np.array([1.00000000e-05, 1.00000000e-03, 1.00000000e-01,
5959
1.00000000e+01, 1.00000000e+03, 1.00000000e+05,

0 commit comments

Comments
 (0)