Merge "Replace inheritance hierarchy with composition"

This commit is contained in:
Jenkins
2013-12-19 18:23:52 +00:00
committed by Gerrit Code Review
3 changed files with 8 additions and 6 deletions
+3 -1
View File
@@ -27,7 +27,9 @@ class LegacyShellV1Test(testtools.TestCase):
def test_print_image_formatted(self):
class FakeClient():
endpoint = 'http://is.invalid'
class FakeHTTPClient():
endpoint = 'http://is.invalid'
http_client = FakeHTTPClient()
class FakeImage():
id = 1