aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormrichomme <morgan.richomme@orange.com>2021-05-12 16:26:21 +0200
committermrichomme <morgan.richomme@orange.com>2021-05-12 16:26:21 +0200
commitbe2d80869fce68b4828e7ec204542ef97af136db (patch)
treeb40fd7b49f069042ff9546365fbdf3f5f193f036
parent3f016d80eb03011339949abbc41ff33b06d09faa (diff)
[CLAMP] Fix Policy exception in basic_clamp
Attribute error due to bad import Issue-ID: TEST-338 Signed-off-by: mrichomme <morgan.richomme@orange.com> Change-Id: Ief0341343a21f9b97dce3ca69bada97efea36727
-rw-r--r--src/onaptests/steps/loop/instantiate_loop.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/onaptests/steps/loop/instantiate_loop.py b/src/onaptests/steps/loop/instantiate_loop.py
index 01eada5..07586ac 100644
--- a/src/onaptests/steps/loop/instantiate_loop.py
+++ b/src/onaptests/steps/loop/instantiate_loop.py
@@ -6,7 +6,7 @@ import logging.config
from onapsdk.clamp.loop_instance import LoopInstance
from onapsdk.configuration import settings
-from onaptests.utils.exceptions import OnapTestException
+import onaptests.utils.exceptions as onap_test_exceptions
class InstantiateLoop():
@@ -58,14 +58,14 @@ class InstantiateLoop():
else:
self._logger.error("An error occured while submitting the loop instance")
- raise OnapTestException.PolicyException
+ raise onap_test_exceptions.PolicyException
self._logger.info("******** DEPLOY LOOP INSTANCE *******")
deploy = loop.deploy_microservice_to_dcae()
if deploy:
self._logger.info("Loop instance %s successfully deployed on DCAE !!", self.loop_name)
else:
self._logger.error("An error occured while deploying the loop instance")
- raise OnapTestException.DcaeException
+ raise onap_test_exceptions.DcaeException
def instantiate_loop(self):
"""Instantiate the control loop."""