summaryrefslogtreecommitdiff
path: root/test/git/test_git.py
diff options
context:
space:
mode:
authorFlorian Apolloner <florian@apolloner.eu>2008-06-01 01:32:33 +0200
committerFlorian Apolloner <florian@apolloner.eu>2008-06-01 01:32:33 +0200
commitb5278c514068f469f2fca7638ef1e1b27556a37a (patch)
tree14c466cf0420e6433a6de52a040564b16eb348e6 /test/git/test_git.py
parent7f34a25eaa6de187797442bc6e0514289d77fed2 (diff)
downloadgitpython-b5278c514068f469f2fca7638ef1e1b27556a37a.tar.gz
fixed the buffer test.
Diffstat (limited to 'test/git/test_git.py')
-rw-r--r--test/git/test_git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/test_git.py b/test/git/test_git.py
index d11bd661..8b302b7f 100644
--- a/test/git/test_git.py
+++ b/test/git/test_git.py
@@ -54,4 +54,4 @@ class TestGit(object):
def test_it_handles_large_input(self):
output = self.git.execute(["cat", "/bin/bash"])
- assert( len(output) > 4096 * 1024 ) # at least 4k
+ assert(len(output) > 4096) # at least 4k