We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 522a0ac commit ab2d598Copy full SHA for ab2d598
pandas/tseries/tests/test_resample.py
@@ -636,7 +636,7 @@ def test_resample_base_with_timedeltaindex(self):
636
with_base = ts.resample('10s', base = 5)
637
without_base = ts.resample('10s')
638
639
- exp_without_base = timedelta_range(start = '5s', end = '25s', freq = '10s')
+ exp_without_base = timedelta_range(start = '0s', end = '25s', freq = '10s')
640
exp_with_base = timedelta_range(start = '5s', end = '25s', freq = '10s')
641
642
self.assertTrue(with_base.index.equals(exp_with_base))
0 commit comments