Skip to content

Commit

Permalink
added engine param
Browse files Browse the repository at this point in the history
  • Loading branch information
rsm-23 committed Aug 22, 2023
1 parent 4a18803 commit c7d4fe6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/tests/io/test_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ def test_cross_engine_fp_pa(df_cross_compat, pa, fp):
tm.assert_frame_equal(result, df[["a", "d"]])


def test_parquet_pos_args_deprecation():
def test_parquet_pos_args_deprecation(engine):
# GH-54229
df = pd.DataFrame({"a": [1, 2, 3]})
msg = (
Expand All @@ -368,7 +368,7 @@ def test_parquet_pos_args_deprecation():
)
with tm.assert_produces_warning(FutureWarning, match=msg, check_stacklevel=False):
buffer = BytesIO()
df.to_parquet(buffer, "auto")
df.to_parquet(buffer, engine)


class Base:
Expand Down

0 comments on commit c7d4fe6

Please sign in to comment.