Skip to content

Commit 5be8cb1

Browse files
gfyoungPingviinituutti
authored andcommitted
TST: Add missing match parameter in test_move (pandas-dev#24393)
xref pandas-devgh-23922
1 parent f8df4b7 commit 5be8cb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/util/test_move.py

+1-1
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)