From 9301b4634606c3b2f6d7dda60df653f99b7715d5 Mon Sep 17 00:00:00 2001 From: Joseph Lawson Date: Tue, 21 Oct 2014 15:55:08 -0400 Subject: [PATCH] another python 3 fix on dict --- tests/test_cloudformation/test_stack_parsing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cloudformation/test_stack_parsing.py b/tests/test_cloudformation/test_stack_parsing.py index 9cb30aba0..286d5de74 100644 --- a/tests/test_cloudformation/test_stack_parsing.py +++ b/tests/test_cloudformation/test_stack_parsing.py @@ -68,7 +68,7 @@ get_attribute_output = { outputs_template = dict(list(dummy_template.items()) + list(output_dict.items())) bad_outputs_template = dict(list(dummy_template.items()) + list(bad_output.items())) -get_attribute_outputs_template = dict(dummy_template.items() + get_attribute_output.items()) +get_attribute_outputs_template = dict(list(dummy_template.items()) + list(get_attribute_output.items())) dummy_template_json = json.dumps(dummy_template) name_type_template_json = json.dumps(name_type_template)