Skip to content

Commit

Permalink
Fixed failed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MomIsBestFriend committed Dec 9, 2019
1 parent e189e56 commit 017279d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/series/test_missing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1338,7 +1338,7 @@ def test_interp_limit_bad_direction(self):

msg = (
r"Invalid limit_direction: expecting one of \['forward',"
r" 'backward', 'both'\], got 'abc'"
r" 'backward', 'both'\], got abc"
)
with pytest.raises(ValueError, match=msg):
s.interpolate(method="linear", limit=2, limit_direction="abc")
Expand Down

0 comments on commit 017279d

Please sign in to comment.