Skip to content

Commit 0bd0f47

Browse files
committed
TST: add engine param
1 parent a9af3d6 commit 0bd0f47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/test_parquet.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,10 +376,10 @@ def test_columns_dtypes_invalid(self, engine):
376376
]
377377
self.check_error_on_write(df, engine, ValueError)
378378

379-
def test_to_bytes_without_path_or_buf_provided(self, df_full):
379+
def test_to_bytes_without_path_or_buf_provided(self, engine, df_full):
380380
# GH 37105
381381

382-
buf = df_full.to_parquet()
382+
buf = df_full.to_parquet(engine=engine)
383383
assert isinstance(buf, bytes)
384384

385385
with tm.ensure_clean() as path:

0 commit comments

Comments
 (0)