Skip to content

Commit 1adbb0c

Browse files
committed
ENH: Fix comments in new test cases
1 parent 290378f commit 1adbb0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/groupby/methods/test_kurt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def test_groupby_kurt_equivalence():
3030

3131
def test_groupby_kurt_arrow_float64():
3232
# GH#40139
33-
# Test groupby.kurt() with skipna = False
33+
# Test groupby.kurt() with float64[pyarrow] dtype
3434
df = pd.DataFrame(
3535
{
3636
"x": [1.0, np.nan, 3.2, 4.8, 2.3, 1.9, 8.9],
@@ -65,7 +65,7 @@ def test_groupby_kurt_noskipna():
6565

6666
def test_groupby_kurt_all_ones():
6767
# GH#40139
68-
# Test groupby.kurt() with skipna = False
68+
# Test groupby.kurt() with constant values
6969
df = pd.DataFrame(
7070
{
7171
"x": [1.0] * 10,

0 commit comments

Comments
 (0)