Skip to content

Commit 814c7a2

Browse files
committed
Remove unused capsys variable in test method
1 parent dcc83cf commit 814c7a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/formats/test_to_csv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ def test_to_csv_compression(self, compression_only,
540540
compression=read_compression)
541541
tm.assert_frame_equal(result, df)
542542

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

0 commit comments

Comments
 (0)