diff options
author | Lukasz Rajewski <lukasz.rajewski@t-mobile.pl> | 2024-01-31 11:06:56 +0100 |
---|---|---|
committer | Lukasz Rajewski <lukasz.rajewski@t-mobile.pl> | 2024-01-31 11:41:12 +0100 |
commit | 6a3e189d7fac6ec562f8785c71ed87663ef0c311 (patch) | |
tree | c18e2f00c9e0c13575f515b4662ef65d42457847 /src/onaptests/steps/instantiate/vnf_ala_carte.py | |
parent | a7edeebc90bdd335361a7b36f5f5d12a14375554 (diff) |
Changes in the packages sort order
Issue-ID: TEST-402
Signed-off-by: Lukasz Rajewski <lukasz.rajewski@t-mobile.pl>
Change-Id: I9f8ac40254e6a052c4b3ced5b05e21d7e84fa37f
Diffstat (limited to 'src/onaptests/steps/instantiate/vnf_ala_carte.py')
-rw-r--r-- | src/onaptests/steps/instantiate/vnf_ala_carte.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/onaptests/steps/instantiate/vnf_ala_carte.py b/src/onaptests/steps/instantiate/vnf_ala_carte.py index e45f71e..8ead082 100644 --- a/src/onaptests/steps/instantiate/vnf_ala_carte.py +++ b/src/onaptests/steps/instantiate/vnf_ala_carte.py @@ -1,11 +1,12 @@ from uuid import uuid4 -from yaml import load, SafeLoader from onapsdk.aai.cloud_infrastructure import CloudRegion, Tenant from onapsdk.configuration import settings from onapsdk.sdc.service import Service +from yaml import SafeLoader, load import onaptests.utils.exceptions as onap_test_exceptions + from ..base import YamlTemplateBaseStep from .service_ala_carte import YamlTemplateServiceAlaCarteInstantiateStep |