Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9123340

Browse files
committedJul 5, 2025·
fixed space test_new_style_with_mixed_types_in_column
1 parent 4f87711 commit 9123340

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed
 

‎pandas/tests/io/formats/test_to_csv.py‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,6 @@ def test_new_style_with_mixed_types():
781781
def test_new_style_with_mixed_types_in_column():
782782
df = DataFrame({"A": [1.23, "text", 4.56]})
783783
result = df.to_csv(float_format="{:.2f}", lineterminator="\n")
784-
785784
expected = ",A\n0,1.23\n1,text\n2,4.56\n"
786785
assert result == expected
787786

0 commit comments

Comments
 (0)
Please sign in to comment.