Skip to content

Commit 6e0fe02

Browse files
authored
Refactor test_mean_nullable_int_axis_1 docstring
1 parent d4a528f commit 6e0fe02

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

pandas/tests/frame/test_reductions.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2173,11 +2173,7 @@ def test_numeric_ea_axis_1(method, skipna, min_count, any_numeric_ea_dtype):
21732173

21742174

21752175
def test_mean_nullable_int_axis_1():
2176-
"""
2177-
Test DataFrame.mean(axis=1) with nullable Int64 dtype.
2178-
2179-
Ensures correct results with skipna=True and skipna=False.
2180-
"""
2176+
# GH##36585
21812177
df = DataFrame(
21822178
{"a": [1, 2, 3, 4], "b": Series([1, 2, 4, None], dtype=pd.Int64Dtype())}
21832179
)

0 commit comments

Comments
 (0)