(err, args, kwargs, match)
| 6471 | "'foo'"), |
| 6472 | )) |
| 6473 | def test_axis_errors(err, args, kwargs, match): |
| 6474 | with pytest.raises(err, match=match): |
| 6475 | plt.axis(*args, **kwargs) |
| 6476 | |
| 6477 | |
| 6478 | def test_axis_method_errors(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…