Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix list formatting
  • Loading branch information
Kevin D Smith committed Oct 19, 2020
commit c7be576ad66b3d15f628709c7a1dbfb0bacc56d5
6 changes: 1 addition & 5 deletions pandas/tests/io/formats/test_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -697,11 +697,7 @@ def test_to_string_with_formatters(self):
float=lambda x: f"[2] {x}",
object=lambda x: f"[3] {x}",
),
[
lambda x: f"[1] {x}",
lambda x: f"[2] {x}",
lambda x: f"[3] {x}"
],
[lambda x: f"[1] {x}", lambda x: f"[2] {x}", lambda x: f"[3] {x}"],
]
)
def test_to_string_with_truncated_formatters(self, formatters):
Expand Down