summaryrefslogtreecommitdiff
path: root/test/git/test_git.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-14 19:41:27 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-14 19:41:27 +0200
commitc5df44408218003eb49e3b8fc94329c5e8b46c7d (patch)
tree2e0c757af71c05cc5d4580cf80ba97abb00fe1be /test/git/test_git.py
parent6745f4542cfb74bbf3b933dba7a59ef2f54a4380 (diff)
downloadgitpython-c5df44408218003eb49e3b8fc94329c5e8b46c7d.tar.gz
persistent command signature changed to also return the hexsha from a possible input ref - the objects pointed to by refs are now baked on demand - perhaps it should change to always be re-retrieved using a property as it is relatively fast - this way refs can always be cached
Diffstat (limited to 'test/git/test_git.py')
-rw-r--r--test/git/test_git.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/git/test_git.py b/test/git/test_git.py
index 591d5939..1f44aebc 100644
--- a/test/git/test_git.py
+++ b/test/git/test_git.py
@@ -84,6 +84,6 @@ class TestGit(object):
# same can be achived using the respective command functions
- typename, size = self.git.get_object_header(hexsha)
- typename_two, size_two, data = self.git.get_object_data(hexsha)
+ hexsha, typename, size = self.git.get_object_header(hexsha)
+ hexsha, typename_two, size_two, data = self.git.get_object_data(hexsha)
assert typename == typename_two and size == size_two