Merge "iso8601.is8601.Utc No Longer Exists"

This commit is contained in:
Jenkins 2017-09-09 15:43:09 +00:00 committed by Gerrit Code Review
commit d1e71da9bd
1 changed files with 3 additions and 4 deletions

View File

@ -12,10 +12,9 @@
# under the License.
import datetime
import iso8601
import mock
from iso8601 import iso8601
from senlin.api.openstack.v1 import services
from senlin.common import policy
from senlin.objects import service as service_obj
@ -30,9 +29,9 @@ fake_services_list = [
disabled=False,
topic='senlin-engine',
updated_at=datetime.datetime(2012, 10, 29, 13, 42, 11,
tzinfo=iso8601.Utc()),
tzinfo=iso8601.UTC),
created_at=datetime.datetime(2014, 10, 29, 13, 42, 11,
tzinfo=iso8601.Utc()),
tzinfo=iso8601.UTC),
disabled_reason='')
]