nealrichardson commented on a change in pull request #7604: URL: https://github.com/apache/arrow/pull/7604#discussion_r449123267
########## File path: python/pyarrow/tests/test_pandas.py ########## @@ -3321,9 +3321,12 @@ def test_cast_timestamp_unit(): assert result.equals(expected) -def test_struct_with_timestamp_tz(): +def test_nested_with_timestamp_tz(): # ARROW-7723 ts = pd.Timestamp.now() + # This is used for verifying timezone conversion to micros are not + # important + ts_dt = ts.to_pydatetime().replace(microsecond=0) Review comment: 👋 another observation from the R side which may or may not be relevant here: https://github.com/sparklyr/sparklyr/issues/2439 ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org