diff options
author | Damien George <damien.p.george@gmail.com> | 2016-01-26 21:57:02 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2016-01-26 21:57:02 +0000 |
commit | ac11e89fa37e64874a83611fbd7e894cc1a5be22 (patch) | |
tree | d8e123a8cf1da067bea12517af385b035812adc5 | |
parent | e713222fabe1c3987364870ed592db38529bc4a3 (diff) | |
download | micropython-ac11e89fa37e64874a83611fbd7e894cc1a5be22.tar.gz micropython-ac11e89fa37e64874a83611fbd7e894cc1a5be22.zip |
tests: For urandom test, use sys.exit() instead of sys.exit(1).
-rw-r--r-- | tests/extmod/urandom_extra.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/extmod/urandom_extra.py b/tests/extmod/urandom_extra.py index 14ee2f0885..a9ecd881de 100644 --- a/tests/extmod/urandom_extra.py +++ b/tests/extmod/urandom_extra.py @@ -8,7 +8,7 @@ try: except AttributeError: import sys print('SKIP') - sys.exit(1) + sys.exit() print('randrange') for i in range(50): |