Skip to content

Commit 44f991b

Browse files
fix indentation error
1 parent a9fc38d commit 44f991b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pandas/tests/test_strings.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3444,13 +3444,14 @@ def test_replace_single_pattern(self, regex, expected_array):
34443444
@pytest.mark.parametrize("input_array, single_char, replace_char, "
34453445
"expect_array, warn",
34463446
[
3447-
("a.c", ".", "b", "abc", True),
3448-
("a@c", "@", "at", "aatc", False)
3449-
]
3447+
("a.c", ".", "b", "abc", True),
3448+
("a@c", "@", "at", "aatc", False)
3449+
]
34503450
)
34513451
def test_replace_warning_single_character(self, input_array,
34523452
single_char, replace_char,
34533453
expect_array, warn):
3454+
# GH: 24804
34543455
values = Series([input_array])
34553456
if warn:
34563457
with tm.assert_produces_warning(FutureWarning,

0 commit comments

Comments
 (0)