Skip to content

Commit 082e3f9

Browse files
authored
TST: Add github issue numbers (GH45809)
1 parent 54e60ee commit 082e3f9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/tests/plotting/frame/test_frame.py

+2
Original file line numberDiff line numberDiff line change
@@ -788,12 +788,14 @@ def test_plot_scatter_with_s(self):
788788
tm.assert_numpy_array_equal(df["c"].values, right=ax.collections[0].get_sizes())
789789

790790
def test_plot_scatter_with_norm(self):
791+
# added while fixing GH 45809
791792
import matplotlib as mpl
792793

793794
ax = self.hexbin_df.plot.scatter(x="A", y="B", c="C", norm=mpl.colors.LogNorm())
794795
assert ax.collections[0].norm._scale
795796

796797
def test_plot_scatter_without_norm(self):
798+
# added while fixing GH 45809
797799
ax = self.hexbin_df.plot.scatter(x="A", y="B", c="C")
798800
assert ax.collections[0].norm._scale is None
799801

0 commit comments

Comments
 (0)