Skip to content

Commit 8a6ae81

Browse files
authored
Merge pull request pandas-dev#695 from shashank88/fix_benchmarks
694: Fix Benchmarks
2 parents b1507fc + aefdfd6 commit 8a6ae81

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)