(err, args, kwargs, match)
| 2372 | (TypeError, (1, 1), {}, 'Must pass a single positional argument for'), |
| 2373 | )) |
| 2374 | def test_margins_errors(err, args, kwargs, match): |
| 2375 | with pytest.raises(err, match=match): |
| 2376 | fig = plt.figure() |
| 2377 | ax = fig.add_subplot(projection='3d') |
| 2378 | ax.margins(*args, **kwargs) |
| 2379 | |
| 2380 | |
| 2381 | @check_figures_equal() |
nothing calls this directly
no test coverage detected
searching dependent graphs…