We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6583c57 commit 1c59ae7Copy full SHA for 1c59ae7
pandas/tests/series/test_arithmetic.py
@@ -769,7 +769,7 @@ def test_align_date_objects_with_datetimeindex(self):
769
result2 = ts2 + ts
770
771
date_labels = [x.date() for x in rng[5:]]
772
- expected_index = Index(list(rng) + date_labels, dtype=object)
+ expected_index = Index(date_labels + list(rng), dtype=object)
773
774
# Length and index checks
775
assert len(result) == 35
0 commit comments