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
This commit is contained in:
Vishvananda Ishaya
2011-12-08 11:14:39 -08:00
parent b9b5da9057
commit ad86c4f904

View File

@@ -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):