diff --git a/heat_integrationtests/functional/test_templates.py b/heat_integrationtests/functional/test_templates.py index 9d36391c60..232b30df21 100644 --- a/heat_integrationtests/functional/test_templates.py +++ b/heat_integrationtests/functional/test_templates.py @@ -47,7 +47,7 @@ class TemplateAPITest(functional_base.FunctionalTestsBase): template=self.template ) template_from_client = self.client.stacks.template(stack_identifier) - self.assertDictEqual(self.template, template_from_client) + self.assertEqual(self.template, template_from_client) def test_template_version(self): template_versions = self.client.template_versions.list()