diff options
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 |