TST/BUG: Remove incorrect time period from hardcoded date.

Incompatible with changes to date parsers which reject the mismatch of
13:31 and AM.
This commit is contained in:
Eddie Hebert
2015-03-19 10:15:05 -04:00
parent 7892a6943f
commit e69cf46e63
+3 -3
View File
@@ -1107,7 +1107,7 @@ class TestHistoryContainerResize(TestCase):
specs = {spec.key_str: spec}
initial_sids = [1]
initial_dt = pd.Timestamp(
'2013-06-28 13:31AM'
'2013-06-28 13:31'
if data_frequency == 'minute'
else '2013-06-28 12:00AM',
tz='UTC',
@@ -1172,7 +1172,7 @@ class TestHistoryContainerResize(TestCase):
specs = {spec.key_str: spec}
initial_sids = [1]
initial_dt = pd.Timestamp(
'2013-06-28 13:31AM'
'2013-06-28 13:31'
if data_frequency == 'minute'
else '2013-06-28 12:00AM',
tz='UTC',
@@ -1229,7 +1229,7 @@ class TestHistoryContainerResize(TestCase):
specs = {spec.key_str: spec}
initial_sids = [1]
initial_dt = pd.Timestamp(
'2013-06-28 13:31AM'
'2013-06-28 13:31'
if data_frequency == 'minute'
else '2013-06-28 12:00AM',
tz='UTC',