diff options
author | Florian Apolloner <florian@apolloner.eu> | 2008-06-01 01:32:33 +0200 |
---|---|---|
committer | Florian Apolloner <florian@apolloner.eu> | 2008-06-01 01:32:33 +0200 |
commit | b5278c514068f469f2fca7638ef1e1b27556a37a (patch) | |
tree | 14c466cf0420e6433a6de52a040564b16eb348e6 /test/git/test_git.py | |
parent | 7f34a25eaa6de187797442bc6e0514289d77fed2 (diff) | |
download | gitpython-b5278c514068f469f2fca7638ef1e1b27556a37a.tar.gz |
fixed the buffer test.
Diffstat (limited to 'test/git/test_git.py')
-rw-r--r-- | test/git/test_git.py | 2 |
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 |