Skip to content

Commit a9fc38d

Browse files
fix indentation error
1 parent 41a2bf4 commit a9fc38d

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,9 +3444,10 @@ 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+
]
3450+
)
34503451
def test_replace_warning_single_character(self, input_array,
34513452
single_char, replace_char,
34523453
expect_array, warn):

0 commit comments

Comments
 (0)