Skip to content

Commit

Permalink
TST: Add missing match parameter in test_move (#24393)
Browse files Browse the repository at this point in the history
  • Loading branch information
gfyoung authored Dec 22, 2018
1 parent 8c58817 commit aa3d56e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/util/test_move.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_more_than_one_ref():

b = b"testing"

with pytest.raises(BadMove) as e:
with pytest.raises(BadMove, match="testing") as e:
def handle_success(type_, value, tb):
assert value.args[0] is b
return type(e).handle_success(e, type_, value, tb) # super
Expand Down

0 comments on commit aa3d56e

Please sign in to comment.