aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/onaptests/steps/cloud/k8s_connectivity_info_create.py2
-rw-r--r--src/onaptests/steps/instantiate/k8s_profile_create.py2
-rw-r--r--src/onaptests/steps/instantiate/msb_k8s.py2
-rw-r--r--src/onaptests/steps/onboard/msb_k8s.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/onaptests/steps/cloud/k8s_connectivity_info_create.py b/src/onaptests/steps/cloud/k8s_connectivity_info_create.py
index 6d0faf6..a492479 100644
--- a/src/onaptests/steps/cloud/k8s_connectivity_info_create.py
+++ b/src/onaptests/steps/cloud/k8s_connectivity_info_create.py
@@ -1,7 +1,7 @@
"""Connectivity info creation module."""
from onapsdk.configuration import settings
from onapsdk.exceptions import APIError
-from onapsdk.msb.k8s import ConnectivityInfo
+from onapsdk.k8s import ConnectivityInfo
from ..base import BaseStep
diff --git a/src/onaptests/steps/instantiate/k8s_profile_create.py b/src/onaptests/steps/instantiate/k8s_profile_create.py
index a5c8552..f0ad61b 100644
--- a/src/onaptests/steps/instantiate/k8s_profile_create.py
+++ b/src/onaptests/steps/instantiate/k8s_profile_create.py
@@ -5,7 +5,7 @@ from yaml import load, SafeLoader
from onapsdk.aai.business import Customer, ServiceInstance, ServiceSubscription
from onapsdk.configuration import settings
from onapsdk.exceptions import APIError, ResourceNotFound
-from onapsdk.msb.k8s import Definition
+from onapsdk.k8s import Definition
from onapsdk.so.instantiation import InstantiationParameter
import onaptests.utils.exceptions as onap_test_exceptions
diff --git a/src/onaptests/steps/instantiate/msb_k8s.py b/src/onaptests/steps/instantiate/msb_k8s.py
index 8f9ff2f..724549c 100644
--- a/src/onaptests/steps/instantiate/msb_k8s.py
+++ b/src/onaptests/steps/instantiate/msb_k8s.py
@@ -1,6 +1,6 @@
"""MSB k8s instantiation module."""
from onapsdk.configuration import settings
-from onapsdk.msb.k8s import Instance
+from onapsdk.k8s import Instance
from onaptests.steps.base import BaseStep
from onaptests.steps.onboard.msb_k8s import CreateProfileStep
diff --git a/src/onaptests/steps/onboard/msb_k8s.py b/src/onaptests/steps/onboard/msb_k8s.py
index 503a886..3605c29 100644
--- a/src/onaptests/steps/onboard/msb_k8s.py
+++ b/src/onaptests/steps/onboard/msb_k8s.py
@@ -1,6 +1,6 @@
"""MSB k8s plugin module."""
from onapsdk.configuration import settings
-from onapsdk.msb.k8s import Definition, Profile
+from onapsdk.k8s import Definition, Profile
from onaptests.steps.base import BaseStep
from onaptests.steps.cloud.cloud_region_create import CloudRegionCreateStep