(err, args, kwargs, match)
| 7145 | (TypeError, (1, 1, 1), {}, 'Must pass a single positional argument'), |
| 7146 | )) |
| 7147 | def test_margins_errors(err, args, kwargs, match): |
| 7148 | with pytest.raises(err, match=match): |
| 7149 | fig = plt.figure() |
| 7150 | ax = fig.add_subplot() |
| 7151 | ax.margins(*args, **kwargs) |
| 7152 | |
| 7153 | |
| 7154 | def test_length_one_hist(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…