Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pandas/tests/extension/test_arrow.py
Original file line number Diff line number Diff line change
Expand Up @@ -3295,7 +3295,7 @@ def test_decimal_parse_raises():
# GH 56984
ser = pd.Series(["1.2345"], dtype=ArrowDtype(pa.string()))
with pytest.raises(
pa.lib.ArrowInvalid, match="Rescaling Decimal128 value would cause data loss"
pa.lib.ArrowInvalid, match="Rescaling Decimal(128)? value would cause data loss"
):
ser.astype(ArrowDtype(pa.decimal128(1, 0)))

Expand Down
Loading