summaryrefslogtreecommitdiff
path: root/test/git/test_repo.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-11 22:22:28 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-11 22:22:28 +0200
commitb01824b1aecf8aadae4501e22feb45c20fb26bce (patch)
treed4bd7e5dc1f183938e95619de1b52944e23b9724 /test/git/test_repo.py
parent708b8dda8e7b87841a5f39c60b799c514e75a9c7 (diff)
downloadgitpython-b01824b1aecf8aadae4501e22feb45c20fb26bce.tar.gz
Fixed remaining tests to deal with the changes
mode is now generally an int compatible to the stat module
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 d4316981..aec85506 100644
--- a/test/git/test_repo.py
+++ b/test/git/test_repo.py
@@ -58,7 +58,7 @@ class TestRepo(object):
assert_equal("implement Grit#heads", c.message)
c = commits[1]
- assert_equal([], c.parents)
+ assert_equal((,), c.parents)
c = commits[2]
assert_equal(["6e64c55896aabb9a7d8e9f8f296f426d21a78c2c", "7f874954efb9ba35210445be456c74e037ba6af2"], map(lambda p: p.id, c.parents))