[UT] Fixed floating_ip_pools fake return to expected one

It seems that author wanted to return two pools. But because of typo,
method now returns only one of them. Fixed typo to return two pools.

Change-Id: Ia77a8529fd4db1b06860073ebf33bd54b43438cd
This commit is contained in:
Andrew Lazarev 2014-02-04 16:20:03 -08:00
parent 810857849e
commit d979754704

@ -824,7 +824,7 @@ class FakeHTTPClient(base_client.HTTPClient):
return (
200,
{},
{'floating_ip_pools': [{'name': 'foo', 'name': 'bar'}]}
{'floating_ip_pools': [{'name': 'foo'}, {'name': 'bar'}]}
)
def get_os_floating_ips(self, **kw):