Skip to content

Commit 132f0e8

Browse files
committed
pandas-devGH-24196: typo fixed
1 parent 7c9b0f1 commit 132f0e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/groupby/test_groupby.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2976,7 +2976,7 @@ def test_groupby_numeric_only_std_no_result(numeric_only):
29762976
def test_groupby_sum_on_nan_should_return_nan(bug_var):
29772977
# GH 24196
29782978
df = pd.DataFrame({
2979-
'A': [bug_var, bug_var, bug_var, np.nan]
2979+
"A": [bug_var, bug_var, bug_var, np.nan]
29802980
})
29812981
dfgb = df.groupby(lambda x: x)
29822982
result = dfgb.sum(min_count=1)

0 commit comments

Comments
 (0)