summaryrefslogtreecommitdiff
path: root/test/git/test_repo.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-06-03 23:27:09 +0200
committerSebastian Thiel <byronimo@gmail.com>2010-06-03 23:27:09 +0200
commit1906ee4df9ae4e734288c5203cf79894dff76cab (patch)
tree548e3ef237d7e2d2c2c558f69460bad750e16db9 /test/git/test_repo.py
parent1e2b46138ba58033738a24dadccc265748fce2ca (diff)
downloadgitpython-1906ee4df9ae4e734288c5203cf79894dff76cab.tar.gz
Fixed compatability issues with python 2.5, made sure all tests run
Diffstat (limited to 'test/git/test_repo.py')
-rw-r--r--test/git/test_repo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/test_repo.py b/test/git/test_repo.py
index 7dc645b6..d2c7c742 100644
--- a/test/git/test_repo.py
+++ b/test/git/test_repo.py
@@ -73,7 +73,7 @@ class TestRepo(TestBase):
assert_equal("mtrier@gmail.com", c.committer.email)
assert_equal(1232829715, c.committed_date)
assert_equal(5*3600, c.committer_tz_offset)
- assert_equal("Bumped version 0.1.6", c.message)
+ assert_equal("Bumped version 0.1.6\n", c.message)
c = commits[1]
assert isinstance(c.parents, tuple)