From 3381adcd5f801cff78c4cdedb6e819ead1bb2002 Mon Sep 17 00:00:00 2001 From: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> Date: Fri, 3 May 2024 10:50:19 -0700 Subject: [PATCH] Remove touch --- python/dask_cudf/dask_cudf/io/tests/test_json.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/dask_cudf/dask_cudf/io/tests/test_json.py b/python/dask_cudf/dask_cudf/io/tests/test_json.py index dadeb4e1d1f..dc780478794 100644 --- a/python/dask_cudf/dask_cudf/io/tests/test_json.py +++ b/python/dask_cudf/dask_cudf/io/tests/test_json.py @@ -85,7 +85,6 @@ def test_read_json_nested(tmp_path): ) kwargs = dict(orient="records", lines=True) f = tmp_path / "data.json" - f.touch() with dask.config.set({"dataframe.convert-string": False}): df.to_json(f, **kwargs) # Ensure engine='cudf' is tested.