From 3fe49546f80e5710e7886ec0589b5c0c4a85470a Mon Sep 17 00:00:00 2001 From: Mike Wilson Date: Thu, 5 May 2022 00:54:35 +0000 Subject: [PATCH] updating from review comments --- python/cudf/cudf/tests/test_orc.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python/cudf/cudf/tests/test_orc.py b/python/cudf/cudf/tests/test_orc.py index 460557370ad..2b5f0972afe 100644 --- a/python/cudf/cudf/tests/test_orc.py +++ b/python/cudf/cudf/tests/test_orc.py @@ -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)