diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-20 10:05:25 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-20 10:05:25 +0100 |
commit | fe2fbc5913258ef8379852c6d45fcf226b09900b (patch) | |
tree | 920bb4c04d634092109c3609e377025e35e45ecf /git/test/test_remote.py | |
parent | 34802014ca0c9546e73292260aab5e4017ffcd9a (diff) | |
download | gitpython-fe2fbc5913258ef8379852c6d45fcf226b09900b.tar.gz |
Remote.fetch|pull() will not use poll/threads anymore as only stderr is read.
This simplification should improve performance and remove issues like those
in #232.
NOTE: Debug code is still contained here
Diffstat (limited to 'git/test/test_remote.py')
-rw-r--r-- | git/test/test_remote.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/git/test/test_remote.py b/git/test/test_remote.py index 75dc19c5..110f1fa5 100644 --- a/git/test/test_remote.py +++ b/git/test/test_remote.py @@ -348,6 +348,7 @@ class TestRemote(TestBase): new_head = Head.create(rw_repo, "my_new_branch") progress = TestRemoteProgress() res = remote.push(new_head, progress) + assert len(res) > 0 assert res[0].flags & PushInfo.NEW_HEAD progress.make_assertion() self._do_test_push_result(res, remote) |