(self, data_array_logspaced)
| 3193 | assert plt.gca().get_yscale() == yscale |
| 3194 | |
| 3195 | def test_xscale_log_kwarg(self, data_array_logspaced) -> None: |
| 3196 | xscale = "log" |
| 3197 | with figure_context(): |
| 3198 | data_array_logspaced.plot(xscale=xscale) |
| 3199 | assert plt.gca().get_xscale() == xscale |
| 3200 | |
| 3201 | def test_yscale_log_kwarg(self, data_array_logspaced) -> None: |
| 3202 | yscale = "log" |
nothing calls this directly
no test coverage detected