diff options
Diffstat (limited to 'tests/internal_bench/loop_count-1-range.py')
-rw-r--r-- | tests/internal_bench/loop_count-1-range.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/internal_bench/loop_count-1-range.py b/tests/internal_bench/loop_count-1-range.py index e22adf6cbe..fdb11eaac6 100644 --- a/tests/internal_bench/loop_count-1-range.py +++ b/tests/internal_bench/loop_count-1-range.py @@ -1,7 +1,9 @@ import bench + def test(num): for i in range(num): pass + bench.run(test) |