Skip to content

Commit 37cc958

Browse files
Update test_to_csv.py
fix missed temp file
1 parent 46e3604 commit 37cc958

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/frame/methods/test_to_csv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ def test_to_csv_idx_ncols(self, nrows, ncols, temp_file):
415415

416416
@pytest.mark.slow
417417
@pytest.mark.parametrize("nrows", [10, 98, 99, 100, 101, 102])
418-
def test_to_csv_dup_cols(self, nrows):
418+
def test_to_csv_dup_cols(self, nrows, temp_file):
419419
df = DataFrame(
420420
np.ones((nrows, 3)),
421421
index=Index([f"i-{i}" for i in range(nrows)], name="a"),

0 commit comments

Comments
 (0)