Skip to content

Commit 495f85e

Browse files
author
nli307
committed
remove date type as xfail in test_get_common_dtype
1 parent 74552ce commit 495f85e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas/tests/extension/test_arrow.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -650,8 +650,7 @@ 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_date(pa_dtype)
654-
or pa.types.is_time(pa_dtype)
653+
pa.types.is_time(pa_dtype)
655654
or (pa.types.is_timestamp(pa_dtype) and pa_dtype.tz is not None)
656655
or pa.types.is_binary(pa_dtype)
657656
or pa.types.is_decimal(pa_dtype)

0 commit comments

Comments
 (0)