From d06da5d652ececcefcd0ff1c1dd3fe4cb0cf712b Mon Sep 17 00:00:00 2001 From: Vishvananda Ishaya Date: Thu, 8 Dec 2011 11:14:39 -0800 Subject: Relax dependency on boto 1.9b and nova-adminclient * change boto=1.9b to boto * fix the tests * remove nova-adminclient dependency * remove the useless smoketests for nova-adminclient Change-Id: Ie191453941e64774496a912cb64d1417f3f1bea3 --- nova/tests/test_api.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'nova') diff --git a/nova/tests/test_api.py b/nova/tests/test_api.py index 2d3d4b604..cb33df2bb 100644 --- a/nova/tests/test_api.py +++ b/nova/tests/test_api.py @@ -75,6 +75,8 @@ class FakeHttplibConnection(object): resp = "HTTP/1.0 %s" % resp self.sock = FakeHttplibSocket(resp) self.http_response = httplib.HTTPResponse(self.sock) + # NOTE(vish): boto is accessing private variables for some reason + self._HTTPConnection__response = self.http_response self.http_response.begin() def getresponse(self): -- cgit