Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
uchiiii committed Oct 21, 2023
1 parent 4041636 commit 5a19c14
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions py-polars/tests/unit/io/test_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,9 +554,7 @@ def test_empty_line_with_single_column() -> None:
comment_char="#",
use_pyarrow=False,
)
expected = pl.DataFrame(
{"A": ["a", None, "b"]}
)
expected = pl.DataFrame({"A": ["a", None, "b"]})
print(df)
assert_frame_equal(df, expected)

Expand All @@ -567,10 +565,9 @@ def test_empty_line_with_multiple_columns() -> None:
new_columns=["A", "B"],
has_header=False,
comment_char="#",
use_pyarrow=False)
expected = pl.DataFrame(
{"A": ["a", "c"], "B": ["b", "d"]}
use_pyarrow=False,
)
expected = pl.DataFrame({"A": ["a", "c"], "B": ["b", "d"]})
print(df)
assert_frame_equal(df, expected)

Expand Down

0 comments on commit 5a19c14

Please sign in to comment.