We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eed299f commit b33bd87Copy full SHA for b33bd87
pandas/tests/groupby/test_groupby.py
@@ -390,10 +390,8 @@ def f3(x):
390
depr_msg = "The behavior of array concatenation with empty entries is deprecated"
391
392
# correct result
393
- with tm.assert_produces_warning(FutureWarning, match=depr_msg):
394
- result1 = df.groupby("a").apply(f1)
395
396
- result2 = df2.groupby("a").apply(f1)
+ result1 = df.groupby("a").apply(f1)
+ result2 = df2.groupby("a").apply(f1)
397
tm.assert_frame_equal(result1, result2)
398
399
# should fail (not the same number of levels)
0 commit comments