(self, plotter, bdata)
| 178 | @pytest.mark.parametrize("plotter", PLOT_LIST, ids=PLOT_IDS) |
| 179 | @pytest.mark.parametrize("bdata", bytes_data, ids=bytes_ids) |
| 180 | def test_plot_bytes(self, plotter, bdata): |
| 181 | ax = plt.figure().subplots() |
| 182 | counts = np.array([4, 6, 5]) |
| 183 | plotter(ax, bdata, counts) |
| 184 | axis_test(ax.xaxis, bdata) |
| 185 | |
| 186 | |
| 187 | class TestPlotNumlike: |