diff options
Diffstat (limited to 'git/test/test_index.py')
-rw-r--r-- | git/test/test_index.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/test/test_index.py b/git/test/test_index.py index 2126edda..9b8c957e 100644 --- a/git/test/test_index.py +++ b/git/test/test_index.py @@ -75,7 +75,7 @@ class TestIndex(TestBase): def _assert_fprogress(self, entries): self.assertEqual(len(entries), len(self._fprogress_map)) - for _path, call_count in self._fprogress_map.items(): + for _path, call_count in self._fprogress_map.items(): self.assertEqual(call_count, 2) # END for each item in progress map self._reset_progress() @@ -201,7 +201,7 @@ class TestIndex(TestBase): # test BlobFilter prefix = 'lib/git' - for _stage, blob in base_index.iter_blobs(BlobFilter([prefix])): + for _stage, blob in base_index.iter_blobs(BlobFilter([prefix])): assert blob.path.startswith(prefix) # writing a tree should fail with an unmerged index |