Skip to content

Commit 3082af0

Browse files
author
Chang She
committed
TST: tweak test case for pivot_annual
1 parent e2cbe76 commit 3082af0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas/tseries/tests/test_util.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ def test_daily(self):
3737
leaps.index = leaps.index.year
3838
tm.assert_series_equal(annual[day].dropna(), leaps)
3939

40-
@slow
4140
def test_hourly(self):
4241
rng_hourly = date_range('1/1/1994', periods=(18* 8760 + 4*24), freq='H')
4342
data_hourly = np.random.randint(100, 350, rng_hourly.size)
@@ -52,7 +51,7 @@ def test_hourly(self):
5251

5352
annual = pivot_annual(ts_hourly)
5453

55-
for i in [1, 1416, 1417, 1418, 8784]:
54+
for i in [1, 1416, 1417, 1418, 1439, 1440, 1441, 8784]:
5655
subset = ts_hourly[hoy == i]
5756
subset.index = [x.year for x in subset.index]
5857

0 commit comments

Comments
 (0)