From c5df44408218003eb49e3b8fc94329c5e8b46c7d Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Wed, 14 Oct 2009 19:41:27 +0200 Subject: 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 --- test/git/test_git.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/git/test_git.py') 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 -- cgit v1.2.1