Skip to content

Commit

Permalink
fix: unpack sql_query correctly in function names test
Browse files Browse the repository at this point in the history
Signed-off-by: Ingo Müller <[email protected]>
  • Loading branch information
ingomueller-net committed Nov 28, 2024
1 parent 915c889 commit 76a7ece
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def run_function_name_test(
if type(producer).__name__ == "IbisProducer":
if ibis_expr:
substrait_plan_json = producer.produce_substrait(
sql_query, validate=False, ibis_expr=ibis_expr(*args)
sql_query[0], validate=False, ibis_expr=ibis_expr(*args)
)
else:
pytest.skip("ibis expression currently undefined")
Expand Down

0 comments on commit 76a7ece

Please sign in to comment.