paleolimbot commented on code in PR #41295:
URL: https://github.com/apache/arrow/pull/41295#discussion_r1585214660


##########
python/pyarrow/tests/test_array.py:
##########
@@ -2876,6 +2879,7 @@ def test_fixed_size_list_array_flatten():
     assert arr0.type.equals(typ0)
     assert arr1.flatten().equals(arr0)
     assert arr2.flatten().flatten().equals(arr0)
+    assert arr2.flatten(True).equals(arr0)

Review Comment:
   I see: `assert arr2.flatten(True).equals(arr0)` is the case that I had in 
mind and it was already added (I just missed the distinction between `arr1` and 
`arr0`). The case you added helps make that distinction clearer...thank you!



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