Skip to content

Commit

Permalink
Updating test data to match original test
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperbolic2346 authored May 5, 2022
1 parent 3fe4954 commit e9425f6
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion python/cudf/cudf/tests/test_orc.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,13 +305,21 @@ def test_orc_read_skiprows():
buff = BytesIO()
data = [
True,
None,
False,
True,
False,
None,
True,
True,
True,
False,
None,
False,
False,
True,
True,
True,
True,
]
writer = pyorc.Writer(buff, pyorc.Struct(a=pyorc.Boolean()))
writer.writerows([(d,) for d in data])
Expand Down

0 comments on commit e9425f6

Please sign in to comment.