浏览代码

Don't rely on MemoryObjectStore returning the exact same object.

Jelmer Vernooij 9 年之前
父节点
当前提交
b98c945585
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. 4 2
      dulwich/tests/test_web.py

+ 4 - 2
dulwich/tests/test_web.py

@@ -217,10 +217,12 @@ class DumbHandlersTestCase(WebTestCase):
         backend = _test_backend([blob])
         mat = re.search('^(..)(.{38})$', blob.id.decode('ascii'))
 
-        def as_legacy_object_error():
+        def as_legacy_object_error(self):
             raise IOError
 
-        blob.as_legacy_object = as_legacy_object_error
+        self.addCleanup(
+            setattr, Blob, 'as_legacy_object', Blob.as_legacy_object)
+        Blob.as_legacy_object = as_legacy_object_error
         list(get_loose_object(self._req, backend, mat))
         self.assertEqual(HTTP_ERROR, self._status)