diff options
Diffstat (limited to 'tests/float/bytearray_construct.py')
-rw-r--r-- | tests/float/bytearray_construct.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/float/bytearray_construct.py b/tests/float/bytearray_construct.py index 4e7631b2b9..257d37d1be 100644 --- a/tests/float/bytearray_construct.py +++ b/tests/float/bytearray_construct.py @@ -9,4 +9,4 @@ except ImportError: print("SKIP") raise SystemExit -print(bytearray(array('f', [1, 2.3]))) +print(bytearray(array("f", [1, 2.3]))) |