felipecrv commented on code in PR #34570:
URL: https://github.com/apache/arrow/pull/34570#discussion_r1137144748
##########
python/pyarrow/tests/test_compute.py:
##########
@@ -3108,3 +3109,11 @@ def test_list_slice_bad_parameters():
pc.list_slice(arr, 0, 1, step=0)
with pytest.raises(pa.ArrowInvalid, match=msg + "-1"):
pc.list_slice(arr, 0, 1, step=-1)
+
+
+def test_run_end_encode():
+ arr = pa.array([1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3])
+ encoded = pc.run_end_encode(arr,
options=pc.RunEndEncodeOptions(pa.int64()))
Review Comment:
Ooops. And I've ran the tests locally, but only now saw the lone F at the
end of the green dots :D
I will fix this properly.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]