From ec0c95f85b8ea9f43ff3cdb74fa546a6b7f8d8a0 Mon Sep 17 00:00:00 2001 From: Eli Treuherz Date: Wed, 14 Oct 2020 14:15:06 +0100 Subject: [PATCH] Add issue number note --- pandas/tests/plotting/test_frame.py | 1 + 1 file changed, 1 insertion(+) 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])