Skip to content

Commit 5916bc6

Browse files
fix indentation error
1 parent 44f991b commit 5916bc6

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Diff for: pandas/tests/test_strings.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -3443,10 +3443,8 @@ def test_replace_single_pattern(self, regex, expected_array):
34433443

34443444
@pytest.mark.parametrize("input_array, single_char, replace_char, "
34453445
"expect_array, warn",
3446-
[
3447-
("a.c", ".", "b", "abc", True),
3448-
("a@c", "@", "at", "aatc", False)
3449-
]
3446+
[("a.c", ".", "b", "abc", True),
3447+
("a@c", "@", "at", "aatc", False)]
34503448
)
34513449
def test_replace_warning_single_character(self, input_array,
34523450
single_char, replace_char,

0 commit comments

Comments
 (0)