From d97975470459973ad2687fe1188494029c56b57a Mon Sep 17 00:00:00 2001 From: Andrew Lazarev <alazarev@mirantis.com> Date: Tue, 4 Feb 2014 16:20:03 -0800 Subject: [PATCH] [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 --- novaclient/tests/v1_1/fakes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/novaclient/tests/v1_1/fakes.py b/novaclient/tests/v1_1/fakes.py index d00dd0785..aa8f2414a 100644 --- a/novaclient/tests/v1_1/fakes.py +++ b/novaclient/tests/v1_1/fakes.py @@ -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):