From bcd37b68533d0cceb7e73dd1ed1428fa09f7dc17 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Tue, 13 Jul 2010 09:48:20 +0200 Subject: Fixed incorrect use of Blob.data in performance test --- test/git/performance/test_odb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/git/performance') diff --git a/test/git/performance/test_odb.py b/test/git/performance/test_odb.py index 0809469a..23d5b98e 100644 --- a/test/git/performance/test_odb.py +++ b/test/git/performance/test_odb.py @@ -51,7 +51,7 @@ class TestObjDBPerformance(TestBigRepoR): too_many = 15000 for blob_list in blobs_per_commit: for blob in blob_list: - blob.data + blob.data_stream.read() # END for each blobsha nb += len(blob_list) if nb > too_many: -- cgit v1.2.3