diff options
Diffstat (limited to 'test/git/test_base.py')
-rw-r--r-- | test/git/test_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/test_base.py b/test/git/test_base.py index 48d628c3..04222e2e 100644 --- a/test/git/test_base.py +++ b/test/git/test_base.py @@ -62,7 +62,7 @@ class TestBase(object): ref_count = 0 for ref in chain(self.repo.tags, self.repo.heads): ref_count += 1 - assert isinstance(ref, refs.Ref) + assert isinstance(ref, refs.Reference) assert str(ref) == ref.name assert repr(ref) assert ref == ref |