Skip to content

Commit

Permalink
test(join): adjust test to account for new t.view() semantics
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Dec 21, 2023
1 parent f4210c5 commit aea324c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/backends/tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def test_limit_chain(alltypes, expr_fn):
"expr_fn",
[
param(lambda t: t, id="alltypes table"),
param(lambda t: t.join(t.view(), t.id == t.view().int_col), id="self join"),
param(lambda t: t.join(t.view(), [("id", "int_col")]), id="self join"),
],
)
def test_unbind(alltypes, expr_fn):
Expand Down

0 comments on commit aea324c

Please sign in to comment.