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)