From ba72cf17b5d494d986aa6aed25a404a57e137f54 Mon Sep 17 00:00:00 2001 From: jh629g Date: Mon, 25 Nov 2019 12:22:11 -0600 Subject: [PATCH] Remove deprecated Nova features Removed ranger tempest tests which tested deprecated nova quota features "injected_files", "injected_file_content_bytes", and "injected_path_content_bytes" Change-Id: I5601a39fe950f723ac34e1baed7f9242dc0c1097 --- ranger_tempest_plugin/tests/api/cms_base.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/ranger_tempest_plugin/tests/api/cms_base.py b/ranger_tempest_plugin/tests/api/cms_base.py index fe0367b..0484864 100755 --- a/ranger_tempest_plugin/tests/api/cms_base.py +++ b/ranger_tempest_plugin/tests/api/cms_base.py @@ -40,12 +40,10 @@ class CmsBaseOrmTest(base.BaseOrmTest): def _get_quota(cls): compute, storage, network, quota = {}, {}, {}, {} compute["instances"] = "10" - compute["injected-files"] = "10" compute["key-pairs"] = "10" compute["ram"] = "10" compute["vcpus"] = "51" compute["metadata-items"] = "34" - compute["injected-file-content-bytes"] = "25" storage["gigabytes"] = "10" storage["snapshots"] = "10" storage["volumes"] = "10" @@ -66,7 +64,6 @@ class CmsBaseOrmTest(base.BaseOrmTest): quota = cls._get_quota() quota["compute"][0]["floating-ips"] = "10" quota["compute"][0]["fixed-ips"] = "10" - quota["compute"][0]["injected-file-path-bytes"] = "34" quota["compute"][0]["server-groups"] = "10" quota["compute"][0]["server-group-members"] = "34" quota["network"][0]["health-monitor"] = "10"