diff options
Diffstat (limited to 'tests/float/bytearray_construct.py')
-rw-r--r-- | tests/float/bytearray_construct.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/float/bytearray_construct.py b/tests/float/bytearray_construct.py index db946a99d..e960d624e 100644 --- a/tests/float/bytearray_construct.py +++ b/tests/float/bytearray_construct.py @@ -3,8 +3,7 @@ try: from array import array except ImportError: - import sys print("SKIP") - sys.exit() + raise SystemExit print(bytearray(array('f', [1, 2.3]))) |