raulcd commented on code in PR #41904:
URL: https://github.com/apache/arrow/pull/41904#discussion_r1701605455
##########
python/pyarrow/tests/test_convert_builtin.py:
##########
@@ -285,15 +288,16 @@ def test_list_with_non_list(seq):
@pytest.mark.parametrize("factory", [
pa.list_, pa.large_list, pa.list_view, pa.large_list_view])
def test_nested_arrays(seq, factory):
- arr = pa.array(seq([np.array([], dtype=np.int64),
- np.array([1, 2], dtype=np.int64), None]),
+ arr = pa.array(seq([pa.array([], type=pa.int64()),
+ pa.array([1, 2], type=pa.int64()), None]),
Review Comment:
I've parametrized the test with inner_sequence reusing the `sequence_types`
defined
--
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]