diff options
| -rw-r--r-- | tests/float/bytearray_construct_endian.py | 2 | ||||
| -rw-r--r-- | tests/float/bytes_construct_endian.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/float/bytearray_construct_endian.py b/tests/float/bytearray_construct_endian.py index 257d37d1b..47f2b793c 100644 --- a/tests/float/bytearray_construct_endian.py +++ b/tests/float/bytearray_construct_endian.py @@ -9,4 +9,4 @@ except ImportError: print("SKIP") raise SystemExit -print(bytearray(array("f", [1, 2.3]))) +print(bytearray(array("f", [1, 2.5]))) diff --git a/tests/float/bytes_construct_endian.py b/tests/float/bytes_construct_endian.py index 208f56162..4e15acc8b 100644 --- a/tests/float/bytes_construct_endian.py +++ b/tests/float/bytes_construct_endian.py @@ -9,4 +9,4 @@ except ImportError: print("SKIP") raise SystemExit -print(bytes(array("f", [1, 2.3]))) +print(bytes(array("f", [1, 2.5]))) |
