Fixed bug 608505 - was freeing the wrong address (should have freed 'secondaddress', was freeing 'address')

This commit is contained in:
Justin Santa Barbara 2010-07-23 23:22:26 +00:00 committed by Tarmac
commit 4efa1cd41b
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ class NetworkTestCase(test.TrialTestCase):
self.dnsmasq.release_ip(mac3, address3, hostname, net.bridge_name)
net = network.get_project_network("project0", "default")
rv = network.deallocate_ip(secondaddress)
self.dnsmasq.release_ip(mac, address, hostname, net.bridge_name)
self.dnsmasq.release_ip(mac, secondaddress, hostname, net.bridge_name)
def test_release_before_deallocate(self):
pass