diff options
author | JJ Graham <thetwoj@gmail.com> | 2019-10-23 20:28:08 -0500 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2019-10-24 09:52:58 +0200 |
commit | d85574e0f37e82e266a7c56e4a3ded9e9c76d8a6 (patch) | |
tree | f6d8cbbcd4d50f822f37672bffbba6994c322aa2 /git/test | |
parent | 6244c55e8cbe7b039780cf7585be85081345b480 (diff) | |
download | gitpython-d85574e0f37e82e266a7c56e4a3ded9e9c76d8a6.tar.gz |
Fix #820
Diffstat (limited to 'git/test')
-rw-r--r-- | git/test/test_remote.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_remote.py b/git/test/test_remote.py index 95898f12..f6ef3dbd 100644 --- a/git/test/test_remote.py +++ b/git/test/test_remote.py @@ -325,7 +325,7 @@ class TestRemote(TestBase): self._commit_random_file(rw_repo) progress = TestRemoteProgress() res = remote.push(lhead.reference, progress) - self.assertIsInstance(res, IterableList) + self.assertIsInstance(res, list) self._do_test_push_result(res, remote) progress.make_assertion() |