8000
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 5bc2357 commit bb301f1Copy full SHA for bb301f1
lib/matplotlib/tests/test_axes.py
@@ -1687,6 +1687,17 @@ def test_vline_limit():
1687
assert ymax == 0.25
1688
1689
1690
+@cleanup
1691
+def test_text_labelsize():
1692
+ """
1693
+ tests for issue #1172
1694
1695
+ fig = plt.figure()
1696
+ ax = fig.gca()
1697
+ ax.tick_params(labelsize='large')
1698
+ ax.tick_params(direction='out')
1699
+
1700
1701
if __name__ == '__main__':
1702
import nose
1703
nose.runmodule(argv=['-s', '--with-doctest'], exit=False)
0 commit comments