Two fixes on test_list_available_zones

* Directly invoke method instead of using getattr
* Add 'availability_zones' to hyphen_exceptions

Change-Id: I287284c1c05aaaaf03cd3080538928e5c900f181
This commit is contained in:
Hongbin Lu 2018-10-31 19:41:08 +00:00
parent f341b5b644
commit d50fd0d501
2 changed files with 2 additions and 3 deletions

View File

@ -25,7 +25,6 @@ class ListAvailableZonesTest(base.BaseNetworkTest):
@utils.requires_ext(extension="availability_zone",
service="network")
def test_list_available_zones(self):
resource = 'availability_zones'
body = getattr(self.client, 'list_%s' % resource)()
body = self.client.list_availability_zones()
self.assertIsNotNone(body)
self.assertIsInstance(body['availability_zones'], list)

View File

@ -43,7 +43,7 @@ class NetworkClientJSON(service_client.RestClient):
# The following list represents resource names that do not require
# changing underscore to a hyphen
hyphen_exceptions = ["service_profiles"]
hyphen_exceptions = ["service_profiles", "availability_zones"]
# the following map is used to construct proper URI
# for the given neutron resource
service_resource_prefix_map = {