Skip to content

Commit

Permalink
more GH refs
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrockmendel committed Nov 1, 2023
1 parent 0cea20c commit 7396939
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pandas/tests/tools/test_to_datetime.py
Original file line number Diff line number Diff line change
Expand Up @@ -3698,7 +3698,8 @@ def test_to_datetime_with_empty_str_utc_false_offsets_and_format_mixed():


def test_to_datetime_mixed_tzs_mixed_types():
# GH#55693 mismatched tzs but one is str and other is datetime object
# GH#55793, GH#55693 mismatched tzs but one is str and other is
# datetime object
ts = Timestamp("2016-01-02 03:04:05", tz="US/Pacific")
dtstr = "2023-10-30 15:06+01"
arr = [ts, dtstr]
Expand All @@ -3716,6 +3717,7 @@ def test_to_datetime_mixed_tzs_mixed_types():


def test_to_datetime_mixed_types_matching_tzs():
# GH#55793
dtstr = "2023-11-01 09:22:03-07:00"
ts = Timestamp(dtstr)
arr = [ts, dtstr]
Expand Down Expand Up @@ -3750,7 +3752,7 @@ def test_to_datetime_mixed_types_matching_tzs():
def test_to_datetime_mixed_awareness_mixed_types(
aware_val, naive_val, naive_first, request
):
# GH#55693
# GH#55793, GH#55693
# Empty string parses to NaT
vals = [aware_val, naive_val, ""]

Expand Down

0 comments on commit 7396939

Please sign in to comment.