summaryrefslogtreecommitdiff
path: root/tests/internal_bench/loop_count-5-while_down_ne.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/internal_bench/loop_count-5-while_down_ne.py')
-rw-r--r--tests/internal_bench/loop_count-5-while_down_ne.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/internal_bench/loop_count-5-while_down_ne.py b/tests/internal_bench/loop_count-5-while_down_ne.py
index b9a1af414..419c817c8 100644
--- a/tests/internal_bench/loop_count-5-while_down_ne.py
+++ b/tests/internal_bench/loop_count-5-while_down_ne.py
@@ -1,7 +1,9 @@
import bench
+
def test(num):
while num != 0:
num -= 1
+
bench.run(test)