Skip to content

Commit

Permalink
fix indentation error
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesdong1991 committed Jan 28, 2019
1 parent 44f991b commit 5916bc6
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pandas/tests/test_strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -3443,10 +3443,8 @@ def test_replace_single_pattern(self, regex, expected_array):

@pytest.mark.parametrize("input_array, single_char, replace_char, "
"expect_array, warn",
[
("a.c", ".", "b", "abc", True),
("a@c", "@", "at", "aatc", False)
]
[("a.c", ".", "b", "abc", True),
("a@c", "@", "at", "aatc", False)]
)
def test_replace_warning_single_character(self, input_array,
single_char, replace_char,
Expand Down

0 comments on commit 5916bc6

Please sign in to comment.