diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2018-06-29 18:57:51 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-06-29 18:57:51 +0000 |
commit | d97c57931002895f2af45e521fb8fc20a11e82ca (patch) | |
tree | da5ea01c47b8cc3fc63a3e7f7909b6aa7e2b7e4d | |
parent | 780ca99c712cf6c94147bfc72095fba61768e74b (diff) | |
parent | 4548d69309437142fe33b14bb64f3b8bdbe92e76 (diff) |
Merge "Remove floating ip of second instance in cinder testcase"
-rw-r--r-- | functest/opnfv_tests/openstack/cinder/cinder_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/opnfv_tests/openstack/cinder/cinder_test.py b/functest/opnfv_tests/openstack/cinder/cinder_test.py index 7f9401c93..cc14752ea 100644 --- a/functest/opnfv_tests/openstack/cinder/cinder_test.py +++ b/functest/opnfv_tests/openstack/cinder/cinder_test.py @@ -109,6 +109,6 @@ class CinderCheck(singlevm.SingleVm2): self.cloud.delete_server( self.vm2, wait=True, timeout=getattr(config.CONF, 'vping_vm_delete_timeout')) - self.cloud.delete_floating_ip(self.fip.id) + self.cloud.delete_floating_ip(self.fip2.id) self.cloud.delete_volume(self.volume.id) super(CinderCheck, self).clean() |