From fe2fbc5913258ef8379852c6d45fcf226b09900b Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Tue, 20 Jan 2015 10:05:25 +0100 Subject: 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 --- git/test/test_remote.py | 1 + 1 file changed, 1 insertion(+) (limited to 'git/test/test_remote.py') 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) -- cgit v1.2.1