--- python3-module-seaborn/tests/test_axisgrid.py.orig 2023-09-11 10:57:15.728198297 +0000 +++ python3-module-seaborn/tests/test_axisgrid.py 2023-09-11 13:59:12.888014552 +0000 @@ -331,7 +331,7 @@ class TestFacetGrid: g = ag.FacetGrid(self.df, despine=False, subplot_kws=dict(projection="polar")) for ax in g.axes.flat: - assert "PolarAxesSubplot" in str(type(ax)) + assert "PolarAxes" in ax.__class__.__name__ def test_gridspec_kws(self): ratios = [3, 1, 2]