diff options
author | Thierry Hardy <thierry.hardy@orange.com> | 2020-10-21 08:59:25 +0200 |
---|---|---|
committer | Thierry Hardy <thierry.hardy@orange.com> | 2020-10-21 09:02:31 +0200 |
commit | 1d09884a21b68d84bf1b1f9ae7f53ab8af7786f4 (patch) | |
tree | 00f4640b9344f1902fb6a6d5c3c6f7a001f5f201 /src/onaptests/steps/instantiate | |
parent | 6adb667329c149bb0adc132a2c6e9bfbdd1a52dc (diff) |
Usecase basic_cnf: remaining errors
Error in cleanup phase for all usecases
Missing variables in settings for basic_cnf
Issue-ID: TEST-243
Signed-off-by: jardellos <thierry.hardy@orange.com>
Change-Id: Ic10fc2ae2361f82192a403cf06ee5d8031599acb
Diffstat (limited to 'src/onaptests/steps/instantiate')
-rw-r--r-- | src/onaptests/steps/instantiate/service_ala_carte.py | 2 | ||||
-rw-r--r-- | src/onaptests/steps/instantiate/vnf_ala_carte.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/onaptests/steps/instantiate/service_ala_carte.py b/src/onaptests/steps/instantiate/service_ala_carte.py index 2b42132..47fc532 100644 --- a/src/onaptests/steps/instantiate/service_ala_carte.py +++ b/src/onaptests/steps/instantiate/service_ala_carte.py @@ -232,4 +232,4 @@ class YamlTemplateServiceAlaCarteInstantiateStep(YamlTemplateBaseStep): else: self._logger.error("Service deletion %s failed", self._service_instance_name) raise onap_test_exceptions.ServiceCleanupException - super.cleanup() + super().cleanup() diff --git a/src/onaptests/steps/instantiate/vnf_ala_carte.py b/src/onaptests/steps/instantiate/vnf_ala_carte.py index ad1a241..e9ea1ba 100644 --- a/src/onaptests/steps/instantiate/vnf_ala_carte.py +++ b/src/onaptests/steps/instantiate/vnf_ala_carte.py @@ -134,4 +134,4 @@ class YamlTemplateVnfAlaCarteInstantiateStep(YamlTemplateBaseStep): else: self._logger.error("VNF deletion %s failed", vnf_instance.name) raise onap_test_exceptions.VnfCleanupException - super.cleanup() + super().cleanup() |