summaryrefslogtreecommitdiff
path: root/heat/tests
diff options
context:
space:
mode:
authorricolin <rico.lin@easystack.cn>2018-07-26 23:29:57 +0800
committerricolin <rico.lin@easystack.cn>2018-07-26 23:29:57 +0800
commita8574936e55b8707ca87f4efb90822d97227b75a (patch)
treebbc7c1956c4f37d4bdfafdee8ab8c5aa4a56ac25 /heat/tests
parent2cd021b48357af95d2eaf196401a18e7e9b40b4c (diff)
downloadheat-a8574936e55b8707ca87f4efb90822d97227b75a.tar.gz
Hidden resources in Rocky
Resource type ``OS::Magnum::Bay`` is now hidden, please use ``OS::Magnum::Cluster`` instead. Resource type ``OS::Magnum::BayModele`` is now hidden, please use ``OS::Magnum::ClusterTemplate`` instead. Resource type ``OS::Nova::FloatingIP`` is now hidden, please use ``OS::Neutron::FloatingIP`` instead. Resource type ``OS::Nova::FloatingIPAssociation`` is now hidden, please use ``OS::Neutron::FloatingIPAssociation`` instead. Change-Id: I2ea1400cfe1f4eca24f2fb7b4b0ec27ca5e9538d
Diffstat (limited to 'heat/tests')
-rw-r--r--heat/tests/engine/test_resource_type.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/heat/tests/engine/test_resource_type.py b/heat/tests/engine/test_resource_type.py
index 25bbc05e0..2f67d700d 100644
--- a/heat/tests/engine/test_resource_type.py
+++ b/heat/tests/engine/test_resource_type.py
@@ -44,11 +44,7 @@ class ResourceTypeTest(common.HeatTestCase):
mock_is_service_available.return_value = (True, None)
resources = self.eng.list_resource_types(self.ctx, "DEPRECATED")
self.assertEqual(set(['OS::Aodh::Alarm',
- 'OS::Magnum::Bay',
- 'OS::Magnum::BayModel',
- 'OS::Glance::Image',
- 'OS::Nova::FloatingIP',
- 'OS::Nova::FloatingIPAssociation']),
+ 'OS::Glance::Image']),
set(resources))
@mock.patch.object(res.Resource, 'is_service_available')