Rename images variable in TempestConfigPrivate
The images variable in TempestConfigPrivate is the wrong name since the
group in tempest.conf is actually 'image' so rename it to match the
config file along with any usage of the variable.
Change-Id: I3144734942151c0e807c53e329709abcb9438167
diff --git a/tempest/services/image/v1/json/image_client.py b/tempest/services/image/v1/json/image_client.py
index 17271cc..bc9db38 100644
--- a/tempest/services/image/v1/json/image_client.py
+++ b/tempest/services/image/v1/json/image_client.py
@@ -35,7 +35,7 @@
def __init__(self, auth_provider):
super(ImageClientJSON, self).__init__(auth_provider)
- self.service = CONF.images.catalog_type
+ self.service = CONF.image.catalog_type
self._http = None
def _image_meta_from_headers(self, headers):