Access Tempest config.CONF directly
This ensures that all Tempest plugin configs are loaded. Accessing it
via heat_tempest_plugin.config.CONF assumed that something else was
loading the plugin configs before we tried to access it. This is
probably only the case when running Tempest itself, but we want to be
able to discover and run tests from the heat_integrationtests without
going through Tempest.
Change-Id: I5e9325766ce166e62c731330c462c030cb1e11fc
diff --git a/heat_tempest_plugin/common/test.py b/heat_tempest_plugin/common/test.py
index a0a8b5f..4fdfb8e 100644
--- a/heat_tempest_plugin/common/test.py
+++ b/heat_tempest_plugin/common/test.py
@@ -29,8 +29,8 @@
from heat_tempest_plugin.common import exceptions
from heat_tempest_plugin.common import remote_client
-from heat_tempest_plugin import config
from heat_tempest_plugin.services import clients
+from tempest import config
LOG = logging.getLogger(__name__)
_LOG_FORMAT = "%(levelname)8s [%(name)s] %(message)s"