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-21 18:20:04 -07:00
parent 1b03c538cb
commit f8c68df125

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