Skip to content

Commit 3853e5f

Browse files
committed
Added issue reference to tests
1 parent 84981d2 commit 3853e5f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/tests/groupby/test_grouping.py

+2
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ def test_getitem_single_column(self):
125125
tm.assert_series_equal(result, expected)
126126

127127
def test_indices_grouped_by_tuple_with_lambda(self):
128+
# GH 36158
128129
df = pd.DataFrame(
129130
{"Tuples": ((x, y) for x in [0, 1] for y in np.random.randint(3, 5, 5))}
130131
)
@@ -785,6 +786,7 @@ def test_get_group_grouped_by_tuple(self):
785786
tm.assert_frame_equal(result, expected)
786787

787788
def test_get_group_grouped_by_tuple_with_lambda(self):
789+
# GH 36158
788790
df = pd.DataFrame(
789791
{"Tuples": ((x, y) for x in [0, 1] for y in np.random.randint(3, 5, 5))}
790792
)

0 commit comments

Comments
 (0)