diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-01-06 14:29:46 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-01-06 14:29:46 +0100 |
commit | 02e942b7c603163c87509195d76b2117c4997119 (patch) | |
tree | 47cd746f3d82fa9c10c5338881106213405cd438 /git/test/performance/test_streams.py | |
parent | 725bde98d5cf680a087b6cb47a11dc469cfe956c (diff) | |
download | gitpython-02e942b7c603163c87509195d76b2117c4997119.tar.gz |
test_streams works
However, there is a performance regression in test-odb
Diffstat (limited to 'git/test/performance/test_streams.py')
-rw-r--r-- | git/test/performance/test_streams.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/performance/test_streams.py b/git/test/performance/test_streams.py index ff664c10..aecb7728 100644 --- a/git/test/performance/test_streams.py +++ b/git/test/performance/test_streams.py @@ -80,7 +80,7 @@ class TestObjDBPerformance(TestBigRepoR): elapsed_readchunks = time() - st stream.seek(0) - assert ''.join(chunks) == stream.getvalue() + assert b''.join(chunks) == stream.getvalue() cs_kib = cs / 1000 print("Read %i KiB of %s data in %i KiB chunks from loose odb in %f s ( %f Read KiB / s)" |