()
| 763 | |
| 764 | |
| 765 | def test_nargs_pcolorfast(): |
| 766 | with pytest.raises(TypeError, match='2 were given'): |
| 767 | ax = plt.subplot() |
| 768 | # pcolorfast() takes 1 or 3 arguments, |
| 769 | # not passing any arguments fails at C = args[-1] |
| 770 | # before nargs_err is raised. |
| 771 | ax.pcolorfast([(0, 1), (0, 2)], [[1, 2, 3], [1, 2, 3]]) |
| 772 | |
| 773 | |
| 774 | @image_comparison(['offset_points'], remove_text=True, style='mpl20') |
nothing calls this directly
no test coverage detected
searching dependent graphs…