Skip to content

Commit

Permalink
[CHORE] Fix join alias test (#3335)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinzwang authored Nov 19, 2024
1 parent 25304eb commit a9bf7c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/sql/test_joins.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def test_join_qualifiers(join_condition, selection):
],
)
@pytest.mark.parametrize(
"selection", ["*", "a1.*, b1.y, b.score", "a1.x, a1.val, b1.*", "a1.x, a1.val, b1.y, b1.score"]
"selection", ["*", "a1.*, b1.y, b1.score", "a1.x, a1.val, b1.*", "a1.x, a1.val, b1.y, b1.score"]
)
def test_join_qualifiers_with_alias(join_condition, selection):
a = daft.from_pydict({"x": [1, None], "val": [10, 20]})
Expand Down

0 comments on commit a9bf7c0

Please sign in to comment.