Skip to content

Commit 0edffc2

Browse files
committed
modified: pandas/tests/reshape/test_pivot.py
- Added comment with GitHub issue reference number.
1 parent 17a246b commit 0edffc2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pandas/tests/reshape/test_pivot.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2530,6 +2530,7 @@ def test_pivot_table_aggfunc_nunique_with_different_values(self):
25302530
tm.assert_frame_equal(result, expected)
25312531

25322532
def test_pivot_table_index_and_column_keys_with_nan(self, dropna):
2533+
# GH#61113
25332534
data = {"row": [None, *range(4)], "col": [*range(4), None], "val": range(5)}
25342535
df = DataFrame(data)
25352536
result = df.pivot_table(values="val", index="row", columns="col", dropna=dropna)

0 commit comments

Comments
 (0)