Skip to content

Commit 08b2429

Browse files
committed
Solving the errors
1 parent 17808bf commit 08b2429

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/tests/groupby/test_function.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def _check(self, df, method, expected_columns, expected_columns_numeric):
264264

265265
tm.assert_index_equal(result.columns, expected_columns)
266266

267-
def test_groupby_aggregation_non_numeric_dtype():
267+
def test_groupby_aggregation_non_numeric_dtype(self):
268268
# GH #43108
269269
df = DataFrame(
270270
[["M", [1]], ["M", [1]], ["W", [10]], ["W", [20]]], columns=["MW", "v"]
@@ -281,7 +281,7 @@ def test_groupby_aggregation_non_numeric_dtype():
281281
result = gb.sum()
282282
tm.assert_frame_equal(result, expected)
283283

284-
def test_groupby_aggregation_multi_non_numeric_dtype():
284+
def test_groupby_aggregation_multi_non_numeric_dtype(self):
285285
# GH #42395
286286
df = DataFrame(
287287
{
@@ -303,7 +303,7 @@ def test_groupby_aggregation_multi_non_numeric_dtype():
303303
result = gb.sum()
304304
tm.assert_frame_equal(result, expected)
305305

306-
def test_groupby_aggregation_numeric_with_non_numeric_dtype():
306+
def test_groupby_aggregation_numeric_with_non_numeric_dtype(self):
307307
# GH #43108
308308
df = DataFrame(
309309
{

0 commit comments

Comments
 (0)