Explorar o código

test_missing_obj_finder: correct bogus wants test

This test hasn't been doing what it says on the tin for a while, because
find_missing_objects doesn't take a store argument.
Augie Fackler %!s(int64=10) %!d(string=hai) anos
pai
achega
913d331c1c
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      dulwich/tests/test_missing_obj_finder.py

+ 1 - 1
dulwich/tests/test_missing_obj_finder.py

@@ -104,7 +104,7 @@ class MOFLinearRepoTest(MissingObjectFinderTest):
         haves = [self.cmt(1).id]
         wants = [self.cmt(3).id, bogus_sha]
         self.assertRaises(KeyError, self.store.find_missing_objects,
-            self.store, haves, wants)
+            haves, wants)
 
     def test_no_changes(self):
         self.assertMissingMatch([self.cmt(3).id], [self.cmt(3).id], [])