aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/steps/instantiate/vf_module_ala_carte.py
diff options
context:
space:
mode:
authorMichal Jagiello <michal.jagiello@t-mobile.pl>2021-07-22 10:13:50 +0000
committerMichal Jagiello <michal.jagiello@t-mobile.pl>2021-07-26 10:20:33 +0000
commitf8e444d725207e538875fb25f6637a80f0b34c44 (patch)
tree37eeca6a6f1626c2b507c32ec36895a4227ee1b3 /src/onaptests/steps/instantiate/vf_module_ala_carte.py
parent7fbd9f67fa43997bc8b030ab24dcc4315493c1b1 (diff)
[TEST] Use the newest ONAP SDK version
Use `a_la_carte` flag in vnf and vf_module SO deletion Issue-ID: TEST-352 Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl> Change-Id: I6db6bfa28dfe17fb1a1eac7021f941490a73bb6f
Diffstat (limited to 'src/onaptests/steps/instantiate/vf_module_ala_carte.py')
-rw-r--r--src/onaptests/steps/instantiate/vf_module_ala_carte.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/onaptests/steps/instantiate/vf_module_ala_carte.py b/src/onaptests/steps/instantiate/vf_module_ala_carte.py
index ee20bc6..65559ca 100644
--- a/src/onaptests/steps/instantiate/vf_module_ala_carte.py
+++ b/src/onaptests/steps/instantiate/vf_module_ala_carte.py
@@ -166,7 +166,7 @@ class YamlTemplateVfModuleAlaCarteInstantiateStep(YamlTemplateBaseStep):
for vf_module in vnf_instance.vf_modules:
self._logger.info("Delete VF Module %s",
vf_module.name)
- vf_module_deletion = vf_module.delete()
+ vf_module_deletion = vf_module.delete(a_la_carte=True)
try:
vf_module_deletion.wait_for_finish(settings.ORCHESTRATION_REQUEST_TIMEOUT)