diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-11-05 22:35:20 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-11-05 22:35:20 +0100 |
commit | 819d6aceeb4d31c153de58081b21ad4f8b559c0e (patch) | |
tree | 7392469afa2732f1bf5f690153e245274932b4f3 | |
parent | 179a1dcc65366a70369917d87d00b558a6d0c04d (diff) | |
download | gitpython-819d6aceeb4d31c153de58081b21ad4f8b559c0e.tar.gz |
test_commit: commit.count actually returned incorrect values on linux, namely 141 instead of 143. Manual checking showed that 143 is the correct number, on linux this will have to be fixed
-rw-r--r-- | test/git/test_commit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/test_commit.py b/test/git/test_commit.py index be6d1a28..2e3f131e 100644 --- a/test/git/test_commit.py +++ b/test/git/test_commit.py @@ -75,7 +75,7 @@ class TestCommit(TestBase): assert_equal(sha1, commit.sha) def test_count(self): - assert self.rorepo.tag('refs/tags/0.1.5').commit.count( ) == 141 + assert self.rorepo.tag('refs/tags/0.1.5').commit.count( ) == 143 def test_list(self): assert isinstance(Commit.list_items(self.rorepo, '0.1.5', max_count=5)['5117c9c8a4d3af19a9958677e45cda9269de1541'], Commit) |