aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/scenario/clearwater_ims.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/onaptests/scenario/clearwater_ims.py')
-rw-r--r--src/onaptests/scenario/clearwater_ims.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/onaptests/scenario/clearwater_ims.py b/src/onaptests/scenario/clearwater_ims.py
index 2a035bb..c79e6f7 100644
--- a/src/onaptests/scenario/clearwater_ims.py
+++ b/src/onaptests/scenario/clearwater_ims.py
@@ -45,9 +45,12 @@ class ClearwaterIms(testcase.TestCase):
self.__logger.info("No cleanup requested. Test completed.")
self.result = 100
self.stop_time = time.time()
- except (OnapTestException, SDKException) as exc:
+ except OnapTestException as exc:
self.result = 0
self.__logger.error(exc.error_message)
+ except SDKException:
+ self.result = 0
+ self.__logger.error("SDK Exception")
finally:
self.stop_time = time.time()