diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-07-18 17:49:56 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-07-18 17:49:56 +0200 |
commit | d5cbe7d7de5a29c7e714214695df1948319408d0 (patch) | |
tree | 999887cf53567de2cc9fe2b47037f9a7f7fa70d5 /git/test/test_repo.py | |
parent | 8e3883a0691ce1957996c5b37d7440ab925c731e (diff) | |
download | gitpython-d5cbe7d7de5a29c7e714214695df1948319408d0.tar.gz |
fixed testcase
a test cases was asserting the wrong variable
Diffstat (limited to 'git/test/test_repo.py')
-rw-r--r-- | git/test/test_repo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_repo.py b/git/test/test_repo.py index 21abb86a..18d5c1b8 100644 --- a/git/test/test_repo.py +++ b/git/test/test_repo.py @@ -276,7 +276,7 @@ class TestRepo(TestBase): c += 1 b = self.rorepo.blame(self.rorepo.head, item.path) #END for each item to traverse - assert b + assert c def test_untracked_files(self): base = self.rorepo.working_tree_dir |