summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2016-09-25 17:20:28 +0200
committerSebastian Thiel <byronimo@gmail.com>2016-09-25 17:20:28 +0200
commitf73468bb9cb9e479a0b81e3766623c32802db579 (patch)
tree00b8133b6917bcffa80459662d34e66e45685c62
parent0de60abc5eb71eff14faa0169331327141a5e855 (diff)
downloadgitpython-f73468bb9cb9e479a0b81e3766623c32802db579.tar.gz
fix(test): put `test_commits` back
Thanks to @yarikoptic for catching this one !
-rw-r--r--git/test/test_repo.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/git/test/test_repo.py b/git/test/test_repo.py
index e24062c1..d04a0f66 100644
--- a/git/test/test_repo.py
+++ b/git/test/test_repo.py
@@ -115,6 +115,7 @@ class TestRepo(TestBase):
assert commit.type == 'commit'
assert self.rorepo.commit(commit) == commit
+ def test_commits(self):
mc = 10
commits = list(self.rorepo.iter_commits('0.1.6', max_count=mc))
assert len(commits) == mc