diff --git a/pandas/tests/plotting/test_frame.py b/pandas/tests/plotting/test_frame.py index 5b801631e747b..e666a8e412a52 100644 --- a/pandas/tests/plotting/test_frame.py +++ b/pandas/tests/plotting/test_frame.py @@ -3460,6 +3460,7 @@ def test_xlabel_ylabel_dataframe_single_plot( ) @pytest.mark.parametrize("kind", ["scatter", "hexbin"]) def test_xlabel_ylabel_dataframe_plane_plot(self, kind, xlabel, ylabel): + # GH 37001 xcol = "Type A" ycol = "Type B" df = pd.DataFrame([[1, 2], [2, 5]], columns=[xcol, ycol])