Skip to content

Commit

Permalink
Fix not installed
Browse files Browse the repository at this point in the history
  • Loading branch information
phofl committed Oct 1, 2023
1 parent 2a3af77 commit 51f39c0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pandas/tests/frame/methods/test_join.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,8 @@ def test_join_invalid_validate(left_no_dup, right_no_dup):
def test_join_on_single_col_dup_on_right(left_no_dup, right_w_dups, dtype):
# GH 46622
# Dups on right allowed by one_to_many constraint
if dtype == "string[pyarrow]":
pytest.importorskip("pyarrow")
left_no_dup = left_no_dup.astype(dtype)
right_w_dups.index = right_w_dups.index.astype(dtype)
left_no_dup.join(
Expand Down

0 comments on commit 51f39c0

Please sign in to comment.