diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2016-08-19 10:19:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-19 10:19:43 +0200 |
commit | df5095c16894e6f4da814302349e8e32f84c8c13 (patch) | |
tree | 1b31919357bdaacaf7bb0b6ce1553a0d0ce2b032 /git/test | |
parent | 657cd7e47571710246375433795ab60520e20434 (diff) | |
parent | 25c207592034d00b14fd9df644705f542842fa04 (diff) | |
download | gitpython-df5095c16894e6f4da814302349e8e32f84c8c13.tar.gz |
Merge pull request #499 from pelson/empty_refs
Allowed remotes to have no refs.
Diffstat (limited to 'git/test')
-rw-r--r-- | git/test/test_refs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/test/test_refs.py b/git/test/test_refs.py index b75b967b..879b8caa 100644 --- a/git/test/test_refs.py +++ b/git/test/test_refs.py @@ -320,8 +320,8 @@ class TestRefs(TestBase): assert remote_refs_so_far for remote in remotes: - # remotes without references throw - self.failUnlessRaises(AssertionError, getattr, remote, 'refs') + # remotes without references should produce an empty list + self.assertEqual(remote.refs, []) # END for each remote # change where the active head points to |