diff options
Diffstat (limited to 'test/vcpe/vcpecommon.py')
-rwxr-xr-x | test/vcpe/vcpecommon.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/vcpe/vcpecommon.py b/test/vcpe/vcpecommon.py index 8bc5ef147..971082c80 100755 --- a/test/vcpe/vcpecommon.py +++ b/test/vcpe/vcpecommon.py @@ -520,7 +520,7 @@ class VcpeCommon: nova = openstackclient.Client(2, self.cloud['--os-username'], self.cloud['--os-password'], self.cloud['--os-tenant-id'], self.cloud['--os-auth-url']) for i in nova.servers.list(): if i.name == vm: - for k, v in i.networks.items(): + for k, v in i.networks.items(): # pylint: disable=W0612 for ip in v: if IPAddress(ip) in subnet: return ip @@ -717,7 +717,7 @@ class VcpeCommon: url = self.vpp_inf_url.format(ip) + '/interface/' + inf requests.delete(url, headers=self.vpp_api_headers, auth=self.vpp_api_userpass) - if len(self.get_vxlan_interfaces(ip)) > 0: + if self.get_vxlan_interfaces(ip): self.logger.error("Error deleting VxLAN from {0}, try to restart the VM, IP is {1}.".format(host, ip)) return False |