You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2011/09/24 11:17:57 UTC

svn commit: r1175133 - /libcloud/trunk/test/__init__.py

Author: tomaz
Date: Sat Sep 24 09:17:56 2011
New Revision: 1175133

URL: http://svn.apache.org/viewvc?rev=1175133&view=rev
Log:
oops, forgot to commit this.

Modified:
    libcloud/trunk/test/__init__.py

Modified: libcloud/trunk/test/__init__.py
URL: http://svn.apache.org/viewvc/libcloud/trunk/test/__init__.py?rev=1175133&r1=1175132&r2=1175133&view=diff
==============================================================================
--- libcloud/trunk/test/__init__.py (original)
+++ libcloud/trunk/test/__init__.py Sat Sep 24 09:17:56 2011
@@ -221,7 +221,7 @@ class MockRawResponse(BaseMockHttpObject
     type = None
     responseCls = MockResponse
 
-    def __init__(self):
+    def __init__(self, connection):
         super(MockRawResponse, self).__init__()
         self._data = []
         self._current_item = 0
@@ -230,6 +230,7 @@ class MockRawResponse(BaseMockHttpObject
         self._response = None
         self._headers = None
         self._reason = None
+        self.connection = connection
 
     def next(self):
         if self._current_item == len(self._data):