Skip to content

Commit 02e942b

Browse files
committed
test_streams works
However, there is a performance regression in test-odb
1 parent 725bde9 commit 02e942b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git/test/performance/test_streams.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def test_large_data_streaming(self, rwrepo):
8080
elapsed_readchunks = time() - st
8181

8282
stream.seek(0)
83-
assert ''.join(chunks) == stream.getvalue()
83+
assert b''.join(chunks) == stream.getvalue()
8484

8585
cs_kib = cs / 1000
8686
print("Read %i KiB of %s data in %i KiB chunks from loose odb in %f s ( %f Read KiB / s)"

0 commit comments

Comments
 (0)