Skip to content

Commit a7e6853

Browse files
committed
Modify one test
1 parent 99125bd commit a7e6853

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/indexes/timedeltas/test_setops.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ def test_intersection_bug_1708(self):
8585
(pd.to_timedelta(range(5, 1, -1), unit='s'),
8686
pd.to_timedelta(range(6, 3, -1), unit='s'),
8787
TimedeltaIndex(['00:00:04', '00:00:05'])),
88-
(pd.to_timedelta((1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 20), unit='s'),
89-
pd.to_timedelta(range(1, 20), unit='s'),
88+
(pd.to_timedelta(range(1, 20), unit='s'),
89+
pd.to_timedelta((1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 20), unit='s'),
9090
pd.to_timedelta(range(1, 11), unit='s')),
9191
(pd.to_timedelta((1, 2, 5, 6, 7), unit='s'),
9292
pd.to_timedelta((3, 5, 6, 7), unit='s'),

0 commit comments

Comments
 (0)