Skip to content

Commit ab2d598

Browse files
committed
Fixed typo in test case
1 parent 522a0ac commit ab2d598

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tseries/tests/test_resample.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ def test_resample_base_with_timedeltaindex(self):
636636
with_base = ts.resample('10s', base = 5)
637637
without_base = ts.resample('10s')
638638

639-
exp_without_base = timedelta_range(start = '5s', end = '25s', freq = '10s')
639+
exp_without_base = timedelta_range(start = '0s', end = '25s', freq = '10s')
640640
exp_with_base = timedelta_range(start = '5s', end = '25s', freq = '10s')
641641

642642
self.assertTrue(with_base.index.equals(exp_with_base))

0 commit comments

Comments
 (0)