Skip to content

Commit

Permalink
fix pytest test_csv_writer_datetime_sep
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwendt committed Dec 16, 2020
1 parent e875b54 commit 8e1cf1b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/cudf/cudf/tests/test_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -1912,6 +1912,7 @@ def test_csv_writer_datetime_sep():
df["a"] = df["a"].astype("datetime64[s]")
expected = df.to_pandas().to_csv(date_format="%Y-%m-%dT%H:%M:%SZ", sep="-")
actual = df.to_csv(sep="-")
assert expected == actual


def test_na_filter_empty_fields():
Expand Down

0 comments on commit 8e1cf1b

Please sign in to comment.