Skip to content

Commit aefdfd6

Browse files
author
Shashank Khare
committed
694: Fix Benchmarks
it should be [n] * x instead of [n * x], this was breaking asv run for me. man-group/arctic#694
1 parent b1507fc commit aefdfd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmarks/benchmarks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def gen_dataframe_compressible(cols, rows):
2929

3030
def gen_series_compressible(rows):
3131
d = round(random.uniform(-100.0, 100.0), 1)
32-
data = [d * rows]
32+
data = [d] * rows
3333

3434
index = [range(rows)]
3535

0 commit comments

Comments
 (0)