Skip to content

Commit

Permalink
Solving the errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kurchi1205 committed Sep 1, 2021
1 parent 17808bf commit 08b2429
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pandas/tests/groupby/test_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def _check(self, df, method, expected_columns, expected_columns_numeric):

tm.assert_index_equal(result.columns, expected_columns)

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

def test_groupby_aggregation_multi_non_numeric_dtype():
def test_groupby_aggregation_multi_non_numeric_dtype(self):
# GH #42395
df = DataFrame(
{
Expand All @@ -303,7 +303,7 @@ def test_groupby_aggregation_multi_non_numeric_dtype():
result = gb.sum()
tm.assert_frame_equal(result, expected)

def test_groupby_aggregation_numeric_with_non_numeric_dtype():
def test_groupby_aggregation_numeric_with_non_numeric_dtype(self):
# GH #43108
df = DataFrame(
{
Expand Down

0 comments on commit 08b2429

Please sign in to comment.