summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/builtin_float_minmax.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-06-08 14:00:57 +1000
committerDamien George <damien.p.george@gmail.com>2017-06-08 14:00:57 +1000
commitfde54350a8d740308d12c2ea4c65fa5bea4f186a (patch)
tree33b4b8b15745e98182977f20ed61c38278176db0 /tests/float/builtin_float_minmax.py
parentd80c951f719ee342da1a7ba5ff63b134b46ff1f2 (diff)
downloadmicropython-fde54350a8d740308d12c2ea4c65fa5bea4f186a.tar.gz
micropython-fde54350a8d740308d12c2ea4c65fa5bea4f186a.zip
tests/float: Convert "sys.exit()" to "raise SystemExit".
The latter is shorter and simpler because it doesn't require importing the sys module.
Diffstat (limited to 'tests/float/builtin_float_minmax.py')
-rw-r--r--tests/float/builtin_float_minmax.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/float/builtin_float_minmax.py b/tests/float/builtin_float_minmax.py
index 42cfa63822..20ad3ddf49 100644
--- a/tests/float/builtin_float_minmax.py
+++ b/tests/float/builtin_float_minmax.py
@@ -3,9 +3,8 @@ try:
min
max
except:
- import sys
print("SKIP")
- sys.exit()
+ raise SystemExit
print(min(0,1.0))
print(min(1.0,0))