(self, data_array_logspaced)
| 3199 | assert plt.gca().get_xscale() == xscale |
| 3200 | |
| 3201 | def test_yscale_log_kwarg(self, data_array_logspaced) -> None: |
| 3202 | yscale = "log" |
| 3203 | with figure_context(): |
| 3204 | data_array_logspaced.plot(yscale=yscale) |
| 3205 | assert plt.gca().get_yscale() == yscale |
| 3206 | |
| 3207 | def test_xlim_kwarg(self, data_array) -> None: |
| 3208 | with figure_context(): |
nothing calls this directly
no test coverage detected