Skip to content

Commit

Permalink
modify test to avoid the specs bug
Browse files Browse the repository at this point in the history
  • Loading branch information
vuule committed Mar 12, 2021
1 parent b47527a commit 536aed2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/tests/test_orc.py
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ def test_orc_bool_encode_fail():
def test_nanoseconds_overflow(tmpdir):
path = tmpdir.join("nano64bit.orc")
# Use nanosecond values that take more than 32 bits to encode
s = cudf.Series([710424008, -338482640], dtype="datetime64[ns]")
s = cudf.Series([710424008, -1338482640], dtype="datetime64[ns]")
expected = cudf.DataFrame({"s": s})
expected.to_orc(path)

Expand Down

0 comments on commit 536aed2

Please sign in to comment.