diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-11-24 15:56:49 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-11-24 15:56:49 +0100 |
commit | ec0657cf5de9aeb5629cc4f4f38b36f48490493e (patch) | |
tree | ae7f08094c6fdcddad194783f3e18b5a724c0197 /test/test_remote.py | |
parent | a17c43d0662bab137903075f2cff34bcabc7e1d1 (diff) | |
download | gitpython-ec0657cf5de9aeb5629cc4f4f38b36f48490493e.tar.gz |
Unified object and commit handling which should make the reflog handling much easier. There is some bug in it though, it still needs fixing
Diffstat (limited to 'test/test_remote.py')
-rw-r--r-- | test/test_remote.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_remote.py b/test/test_remote.py index 108712a5..af6915a3 100644 --- a/test/test_remote.py +++ b/test/test_remote.py @@ -208,7 +208,7 @@ class TestRemote(TestBase): assert tinfo.flags & tinfo.NEW_TAG # adjust tag commit - Reference._set_object(rtag, rhead.commit.parents[0].parents[0]) + Reference.set_object(rtag, rhead.commit.parents[0].parents[0]) res = fetch_and_test(remote, tags=True) tinfo = res[str(rtag)] assert tinfo.commit == rtag.commit |