summaryrefslogtreecommitdiff
path: root/heatclient/tests/functional/osc/v1/test_readonly.py
diff options
context:
space:
mode:
Diffstat (limited to 'heatclient/tests/functional/osc/v1/test_readonly.py')
-rw-r--r--heatclient/tests/functional/osc/v1/test_readonly.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/heatclient/tests/functional/osc/v1/test_readonly.py b/heatclient/tests/functional/osc/v1/test_readonly.py
index 0c88a29..88cf178 100644
--- a/heatclient/tests/functional/osc/v1/test_readonly.py
+++ b/heatclient/tests/functional/osc/v1/test_readonly.py
@@ -91,7 +91,7 @@ class SimpleReadOnlyOpenStackClientTest(base.OpenStackClientTestBase):
def test_openstack_resource_type_show(self):
rsrc_schema = self.openstack('orchestration resource type show '
'OS::Heat::RandomString')
- self.assertIsInstance(yaml.load(rsrc_schema), dict)
+ self.assertIsInstance(yaml.safe_load(rsrc_schema), dict)
def _template_validate(self, templ_name, parms):
heat_template_path = self.get_template_path(templ_name)