8000 added failing test · matplotlib/matplotlib@bb301f1 · GitHub
[go: up one dir, main page]

Skip to content

Commit bb301f1

Browse files
committed
added failing test
1 parent 5bc2357 commit bb301f1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

lib/matplotlib/tests/test_axes.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1687,6 +1687,17 @@ def test_vline_limit():
16871687
assert ymax == 0.25
16881688

16891689

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+
16901701
if __name__ == '__main__':
16911702
import nose
16921703
nose.runmodule(argv=['-s', '--with-doctest'], exit=False)

0 commit comments

Comments
 (0)
0