Skip to content

Commit

Permalink
trivial fix
Browse files Browse the repository at this point in the history
  • Loading branch information
galipremsagar committed Jun 22, 2022
1 parent 8d07dab commit 400bb19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/cudf/cudf/tests/test_parquet.py
Expand Up @@ -2552,9 +2552,9 @@ def test_parquet_reader_zstd_compression(datadir):
pytest.mark.xfail(reason="zstd support is not enabled")


def test_read_parquet_multiple_files(datadir):
df_1_path = datadir / "df_1.parquet"
df_2_path = datadir / "df_2.parquet"
def test_read_parquet_multiple_files(tmpdir):
df_1_path = tmpdir / "df_1.parquet"
df_2_path = tmpdir / "df_2.parquet"
df_1 = cudf.DataFrame({"id": range(100), "a": [1] * 100})
df_1.to_parquet(df_1_path)

Expand Down

0 comments on commit 400bb19

Please sign in to comment.