Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-beedie committed May 31, 2024
1 parent c0b1c26 commit 008e0fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions py-polars/tests/unit/sql/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


def test_array_literals() -> None:
with pl.SQLContext(df=None, eager_execution=True) as ctx:
with pl.SQLContext(df=None, eager=True) as ctx:
res = ctx.execute(
"""
SELECT
Expand Down Expand Up @@ -62,7 +62,7 @@ def test_array_to_string() -> None:
["ARRAY", ""],
)
def test_unnest_table_function(array_keyword: str) -> None:
with pl.SQLContext(df=None, eager_execution=True) as ctx:
with pl.SQLContext(df=None, eager=True) as ctx:
res = ctx.execute(
f"""
SELECT * FROM
Expand All @@ -86,7 +86,7 @@ def test_unnest_table_function(array_keyword: str) -> None:


def test_unnest_table_function_errors() -> None:
with pl.SQLContext(df=None, eager_execution=True) as ctx:
with pl.SQLContext(df=None, eager=True) as ctx:
with pytest.raises(
ComputeError,
match=r'UNNEST table alias must also declare column names, eg: "frame data" \(a,b,c\)',
Expand Down

0 comments on commit 008e0fb

Please sign in to comment.