hack tests now that boto get_templates returns ordered dicts

This commit is contained in:
dbfr3qs 2018-01-18 19:40:24 +13:00
parent 597676c59c
commit 7d0733ad10

View File

@ -160,7 +160,7 @@ def test_boto3_create_stack():
TemplateBody=dummy_template_json,
)
cf_conn.get_template(StackName="test_stack")['TemplateBody'].should.equal(
json.loads(json.dumps(cf_conn.get_template(StackName="test_stack")['TemplateBody'])).should.equal(
dummy_template)
@ -270,9 +270,10 @@ def test_create_stack_from_s3_url():
StackName='stack_from_url',
TemplateURL=key_url,
)
cf_conn.get_template(StackName="stack_from_url")[
'TemplateBody'].should.equal(dummy_template)
# from IPython import embed
# embed()
json.loads(json.dumps(cf_conn.get_template(StackName="stack_from_url")[
'TemplateBody'])).should.equal(dummy_template)
@mock_cloudformation
@ -306,8 +307,8 @@ def test_update_stack_from_s3_url():
TemplateURL=key_url,
)
cf_conn.get_template(StackName="update_stack_from_url")[
'TemplateBody'].should.equal(dummy_update_template)
json.loads(json.dumps(cf_conn.get_template(StackName="update_stack_from_url")[
'TemplateBody'])).should.equal(dummy_update_template)
@mock_cloudformation