From 4753a47bbf1c31b907b21b3987dc4cc1b130990d Mon Sep 17 00:00:00 2001 From: rabi Date: Thu, 16 Dec 2021 09:39:20 +0530 Subject: Fix test and lower constraints This fixes failures for PyYAML new version and lower constraints. Change-Id: Iba863242365c4be63495600b741513c2ca0ea9b0 --- heatclient/tests/functional/osc/v1/test_readonly.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'heatclient/tests') 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) -- cgit v1.2.1