Skip to content

Commit

Permalink
updating from review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperbolic2346 committed May 5, 2022
1 parent 411564b commit 3fe4954
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/cudf/cudf/tests/test_orc.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,9 @@ def test_orc_read_skiprows():
writer.writerows([(d,) for d in data])
writer.close()

skiprows = 3
# testing 10 skiprows due to a boolean specific bug fix that didn't
# repro for other sizes of data
skiprows = 10

expected = cudf.read_orc(buff)[skiprows:].reset_index(drop=True)
got = cudf.read_orc(buff, skiprows=skiprows)
Expand Down

0 comments on commit 3fe4954

Please sign in to comment.