From 819d6aceeb4d31c153de58081b21ad4f8b559c0e Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Thu, 5 Nov 2009 22:35:20 +0100 Subject: 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 --- test/git/test_commit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/git/test_commit.py') 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) -- cgit v1.2.1