diff options
author | 2023-06-15 20:26:48 +0000 | |
---|---|---|
committer | 2023-06-15 20:26:48 +0000 | |
commit | 055027ba9410ae5a855587939e8fb86e7a8ea6b2 (patch) | |
tree | 92c4b97e73b259203398e47562bd15961ce27e37 /src/onaptests/scenario | |
parent | c458ace517bb640de7ec05cd2a26e33cfcac21e2 (diff) |
Enhanced SDNC test to cover SVC logic check
Issue-ID: TEST-395
Signed-off-by: Lukasz Rajewski <lukasz.rajewski@t-mobile.pl>
Change-Id: I1e49e8652d06b4c0147e8e1280ccbac9af83b8d4
Diffstat (limited to 'src/onaptests/scenario')
-rw-r--r-- | src/onaptests/scenario/basic_sdnc.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/onaptests/scenario/basic_sdnc.py b/src/onaptests/scenario/basic_sdnc.py index d791080..328a175 100644 --- a/src/onaptests/scenario/basic_sdnc.py +++ b/src/onaptests/scenario/basic_sdnc.py @@ -1,11 +1,11 @@ import logging import time + from xtesting.core import testcase from onapsdk.configuration import settings from onapsdk.exceptions import SDKException - -from onaptests.steps.instantiate.sdnc_service import UpdateSdncService +from onaptests.steps.instantiate.sdnc_service import TestSdncStep from onaptests.utils.exceptions import OnapTestException @@ -22,7 +22,7 @@ class BasicSdnc(testcase.TestCase): kwargs["case_name"] = 'basic_SDNC' super().__init__(**kwargs) self.__logger.debug("Basic SDNC init started") - self.test = UpdateSdncService(cleanup=settings.CLEANUP_FLAG) + self.test = TestSdncStep(cleanup=settings.CLEANUP_FLAG) def run(self): """Run basic SDNC test.""" |