summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUri Baghin <uri@canva.com>2019-09-28 20:39:30 +1000
committerSebastian Thiel <sebastian.thiel@icloud.com>2019-09-28 13:53:33 +0200
commit359a7e0652b6bf9be9200c651d134ec128d1ea97 (patch)
treedcbdfee54c87995581a278073c79729892bd3054
parent4bf53a3913d55f933079801ff367db5e326a189a (diff)
downloadgitpython-359a7e0652b6bf9be9200c651d134ec128d1ea97.tar.gz
Remove assert that can fail erroneously.
-rw-r--r--git/test/test_remote.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/git/test/test_remote.py b/git/test/test_remote.py
index 99949b9e..e87b60df 100644
--- a/git/test/test_remote.py
+++ b/git/test/test_remote.py
@@ -53,7 +53,6 @@ class TestRemoteProgress(RemoteProgress):
# Keep it for debugging
self._seen_lines.append(line)
rval = super(TestRemoteProgress, self)._parse_progress_line(line)
- assert len(line) > 1, "line %r too short" % line
return rval
def line_dropped(self, line):