Skip to content

Commit a4f89dd

Browse files
author
nli307
committed
xfail is_date64 for test_get_common_dtype
1 parent 495f85e commit a4f89dd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/extension/test_arrow.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,8 @@ def test_construct_from_string_another_type_raises(self, dtype):
650650
def test_get_common_dtype(self, dtype, request):
651651
pa_dtype = dtype.pyarrow_dtype
652652
if (
653-
pa.types.is_time(pa_dtype)
653+
pa.types.is_date64(pa_dtype)
654+
or pa.types.is_time(pa_dtype)
654655
or (pa.types.is_timestamp(pa_dtype) and pa_dtype.tz is not None)
655656
or pa.types.is_binary(pa_dtype)
656657
or pa.types.is_decimal(pa_dtype)

0 commit comments

Comments
 (0)