summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2015-01-06 14:29:46 +0100
committerSebastian Thiel <byronimo@gmail.com>2015-01-06 14:29:46 +0100
commit02e942b7c603163c87509195d76b2117c4997119 (patch)
tree47cd746f3d82fa9c10c5338881106213405cd438
parent725bde98d5cf680a087b6cb47a11dc469cfe956c (diff)
downloadgitpython-02e942b7c603163c87509195d76b2117c4997119.tar.gz
test_streams works
However, there is a performance regression in test-odb
-rw-r--r--git/test/performance/test_streams.py2
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)"