amoeba commented on code in PR #44195:
URL: https://github.com/apache/arrow/pull/44195#discussion_r1901427622


##########
python/pyarrow/tests/test_compute.py:
##########
@@ -1020,7 +1020,7 @@ def test_replace_slice():
     offsets = range(-3, 4)
 
     arr = pa.array([None, '', 'a', 'ab', 'abc', 'abcd', 'abcde'])
-    series = arr.to_pandas()
+    series = arr.to_pandas().astype(object).replace({np.nan: None})

Review Comment:
   Some of the changes in the tests in this PR make this PR look like it 
introduces some breaking changes in the pandas conversion routines. It's 
possible I'm missing something but I thought I'd point it out. Am I missing 
something?



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