(fig_test, fig_ref)
| 267 | |
| 268 | @check_figures_equal() |
| 269 | def test_polar_rlim(fig_test, fig_ref): |
| 270 | ax = fig_test.subplots(subplot_kw={'polar': True}) |
| 271 | ax.set_rlim(top=10) |
| 272 | ax.set_rlim(bottom=.5) |
| 273 | |
| 274 | ax = fig_ref.subplots(subplot_kw={'polar': True}) |
| 275 | ax.set_rmax(10.) |
| 276 | ax.set_rmin(.5) |
| 277 | |
| 278 | |
| 279 | @check_figures_equal() |