Skip to content

Commit 9543c4c

Browse files
committed
Remove unused capsys variable in test method
1 parent 22e01af commit 9543c4c

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
@@ -539,7 +539,7 @@ def test_to_csv_compression(self, compression_only,
539539
compression=read_compression)
540540
tm.assert_frame_equal(result, df)
541541

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

0 commit comments

Comments
 (0)