amol- commented on a change in pull request #11076:
URL: https://github.com/apache/arrow/pull/11076#discussion_r702058972



##########
File path: python/pyarrow/tests/test_convert_builtin.py
##########
@@ -164,6 +174,14 @@ def test_sequence_types(seq):
 
 
 @parametrize_with_iterable_types
+def test_nested_sequence_types(seq):
+    arr1 = pa.array([seq([1, 2, 3])])
+    arr2 = pa.array([[1, 2, 3]])
+
+    assert arr1.equals(arr2)

Review comment:
       This is the new test that actually tests this feature, but all other 
tests that remained parametrised with `parametrize_with_iterable_types` trigger 
the new code path too.




-- 
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]


Reply via email to