Skip to content

Commit aa3d56e

Browse files
authored
TST: Add missing match parameter in test_move (#24393)
xref gh-23922
1 parent 8c58817 commit aa3d56e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/util/test_move.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def test_more_than_one_ref():
2323

2424
b = b"testing"
2525

26-
with pytest.raises(BadMove) as e:
26+
with pytest.raises(BadMove, match="testing") as e:
2727
def handle_success(type_, value, tb):
2828
assert value.args[0] is b
2929
return type(e).handle_success(e, type_, value, tb) # super

0 commit comments

Comments
 (0)