diff options
author | boucherv <valentin.boucher@orange.com> | 2017-09-11 17:36:07 +0200 |
---|---|---|
committer | boucherv <valentin.boucher@orange.com> | 2017-09-11 17:36:07 +0200 |
commit | c8c85639ad7a265913e2b143955c24f9560b9423 (patch) | |
tree | 8769fd54b32386b49e021bae75218a1f60b4313e | |
parent | 0b9923e3e3a61062455600fbddffdc20df7ce9e6 (diff) |
Fix bug in cloudify_ims: no return code
Change-Id: I89ab2f9b57d9f4710201af5852aa12925f122079
Signed-off-by: boucherv <valentin.boucher@orange.com>
-rw-r--r-- | functest/opnfv_tests/vnf/ims/cloudify_ims.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/opnfv_tests/vnf/ims/cloudify_ims.py b/functest/opnfv_tests/vnf/ims/cloudify_ims.py index c8c2c509..f9548eb2 100644 --- a/functest/opnfv_tests/vnf/ims/cloudify_ims.py +++ b/functest/opnfv_tests/vnf/ims/cloudify_ims.py @@ -412,7 +412,7 @@ class CloudifyIms(clearwater_ims_base.ClearwaterOnBoardingBase): @energy.enable_recording def run(self, **kwargs): """Execute CloudifyIms test case.""" - super(CloudifyIms, self).run(**kwargs) + return super(CloudifyIms, self).run(**kwargs) # ---------------------------------------------------------- |