Skip to content

Commit cf1068f

Browse files
committed
fix test
1 parent 5f56fa3 commit cf1068f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/system/small/test_pandas.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -440,10 +440,7 @@ def test_merge_raises_error_when_left_right_on_set(scalars_dfs):
440440
left = scalars_df[left_columns]
441441
right = scalars_df[right_columns]
442442

443-
with pytest.raises(
444-
ValueError,
445-
match=re.escape("Can not pass both `on` and `left_on` + `right_on` params."),
446-
):
443+
with pytest.raises(ValueError):
447444
bpd.merge(
448445
left,
449446
right,

0 commit comments

Comments
 (0)