Skip to content

Commit 83dc123

Browse files
committed
Remove unused capsys variable in test method
1 parent 70e9b51 commit 83dc123

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/formats/test_to_csv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ def test_to_csv_compression(self, compression_only,
564564
compression=read_compression)
565565
tm.assert_frame_equal(result, df)
566566

567-
def test_to_csv_na_rep_long_string(self, capsys):
567+
def test_to_csv_na_rep_long_string(self):
568568
# see gh-25099
569569
df = pd.DataFrame({"c": [float('nan')] * 3})
570570
df = df.astype("Int64")

0 commit comments

Comments
 (0)