(fig_test, fig_ref)
| 278 | |
| 279 | @check_figures_equal() |
| 280 | def test_polar_rlim_bottom(fig_test, fig_ref): |
| 281 | ax = fig_test.subplots(subplot_kw={'polar': True}) |
| 282 | ax.set_rlim(bottom=[.5, 10]) |
| 283 | |
| 284 | ax = fig_ref.subplots(subplot_kw={'polar': True}) |
| 285 | ax.set_rmax(10.) |
| 286 | ax.set_rmin(.5) |
| 287 | |
| 288 | |
| 289 | def test_polar_rlim_zero(): |