Skip to content

Commit

Permalink
TST: add engine param
Browse files Browse the repository at this point in the history
  • Loading branch information
arw2019 committed Oct 19, 2020
1 parent 4458545 commit 1518ad8
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 @@ -376,10 +376,10 @@ def test_columns_dtypes_invalid(self, engine):
]
self.check_error_on_write(df, engine, ValueError)

def test_to_bytes_without_path_or_buf_provided(self, df_full):
def test_to_bytes_without_path_or_buf_provided(self, engine, df_full):
# GH 37105

buf = df_full.to_parquet()
buf = df_full.to_parquet(engine=engine)
assert isinstance(buf, bytes)

with tm.ensure_clean() as path:
Expand Down

0 comments on commit 1518ad8

Please sign in to comment.