Skip to content

Commit bbfff68

Browse files
committed
address leftover comments from pandas-dev#29986
1 parent dd6be55 commit bbfff68

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pandas/tests/test_strings.py

-4
Original file line numberDiff line numberDiff line change
@@ -2970,14 +2970,10 @@ def test_partition_sep_kwarg(self):
29702970
# GH 22676; depr kwarg "pat" in favor of "sep"
29712971
values = Series(["a_b_c", "c_d_e", np.nan, "f_g_h"])
29722972

2973-
# str.partition
2974-
# using sep -> no warning
29752973
expected = values.str.partition(sep="_")
29762974
result = values.str.partition("_")
29772975
tm.assert_frame_equal(result, expected)
29782976

2979-
# str.rpartition
2980-
# using sep -> no warning
29812977
expected = values.str.rpartition(sep="_")
29822978
result = values.str.rpartition("_")
29832979
tm.assert_frame_equal(result, expected)

0 commit comments

Comments
 (0)