瀏覽代碼

test_object_store: remove satisfied TODO

Change c1787f51f4eb03a5a4d56d5a34429ae7639d2093 added tests for the
MissingObjectFinder class over in test_missing_obj_finder.py.
Augie Fackler 10 年之前
父節點
當前提交
81a1f4f02e
共有 1 個文件被更改,包括 1 次插入3 次删除
  1. 1 3
      dulwich/tests/test_object_store.py

+ 1 - 3
dulwich/tests/test_object_store.py

@@ -84,7 +84,7 @@ class ObjectStoreTests(object):
         self.store.add_objects([])
 
     def test_add_commit(self):
-        # TODO: Argh, no way to construct Git commit objects without 
+        # TODO: Argh, no way to construct Git commit objects without
         # access to a serialized form.
         self.store.add_objects([])
 
@@ -401,8 +401,6 @@ class TreeLookupPathTests(TestCase):
     def test_lookup_not_tree(self):
         self.assertRaises(NotTreeError, tree_lookup_path, self.get_object, self.tree_id, 'ad/b/j')
 
-# TODO: MissingObjectFinderTests
-
 @skipIfPY3
 class ObjectStoreGraphWalkerTests(TestCase):