summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/builtin_float_round.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/float/builtin_float_round.py')
-rw-r--r--tests/float/builtin_float_round.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/float/builtin_float_round.py b/tests/float/builtin_float_round.py
index 6759d0fd5a..4419b744b0 100644
--- a/tests/float/builtin_float_round.py
+++ b/tests/float/builtin_float_round.py
@@ -2,10 +2,11 @@
# check basic cases
tests = [
- 0.0, 1.0, 0.1, -0.1, 123.4, 123.6, -123.4, -123.6
+ [0.0], [1.0], [0.1], [-0.1], [123.4], [123.6], [-123.4], [-123.6],
+ [1.234567, 5], [1.23456, 1], [1.23456, 0], [1234.56, -2]
]
for t in tests:
- print(round(t))
+ print(round(*t))
# check .5 cases
for i in range(11):