Skip to content

Commit 9a959cd

Browse files
fix conflict
1 parent 1f97148 commit 9a959cd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pandas/tests/test_strings.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3444,6 +3444,7 @@ def test_method_on_bytes(self):
34443444
['ad', 'be', 'cf'], 'S2').astype(object))
34453445
tm.assert_series_equal(result, expected)
34463446

3447+
34473448
@pytest.mark.filterwarnings("ignore: '.' is interpreted as a literal")
34483449
@pytest.mark.parametrize("regex, expected_array", [
34493450
(True, ['foofoofoo', 'foofoofoo']),
@@ -3475,13 +3476,13 @@ def test_replace_warning_single_character(self, input_array,
34753476
result = values.str.replace(single_char, replace_char)
34763477

34773478
expected = Series([expect_array])
3478-
=======
3479+
tm.assert_series_equal(result, expected)
3480+
34793481
@pytest.mark.skipif(compat.PY2, reason='not in python2')
34803482
def test_casefold(self):
34813483
# GH25405
34823484
expected = Series(['ss', NA, 'case', 'ssd'])
34833485
s = Series(['ß', NA, 'case', 'ßd'])
34843486
result = s.str.casefold()
34853487

3486-
>>>>>>> github/master
34873488
tm.assert_series_equal(result, expected)

0 commit comments

Comments
 (0)