Fix wrong return value in TestDeleteFloatingIPNetwork
delete_ip() should return None, not the fake floating IP. Change-Id: I1476189a09a94c76c90f9a3986e3ae57dc66d796
This commit is contained in:
parent
02e5b6f41d
commit
ab40add0c6
@ -37,7 +37,7 @@ class TestDeleteFloatingIPNetwork(TestFloatingIPNetwork):
|
|||||||
def setUp(self):
|
def setUp(self):
|
||||||
super(TestDeleteFloatingIPNetwork, self).setUp()
|
super(TestDeleteFloatingIPNetwork, self).setUp()
|
||||||
|
|
||||||
self.network.delete_ip = mock.Mock(return_value=self.floating_ip)
|
self.network.delete_ip = mock.Mock(return_value=None)
|
||||||
self.network.find_ip = mock.Mock(return_value=self.floating_ip)
|
self.network.find_ip = mock.Mock(return_value=self.floating_ip)
|
||||||
|
|
||||||
# Get the command object to test
|
# Get the command object to test
|
||||||
|
Loading…
Reference in New Issue
Block a user