summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/bytes_construct.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-01-08 15:41:37 +0000
committerDamien George <damien.p.george@gmail.com>2015-01-08 15:41:37 +0000
commit19b3fea6a885d071a1216614ee3f766aba947cbf (patch)
treef1fe2527de3a602c1206bd39d370132b52fbde8a /tests/basics/bytes_construct.py
parent115187f7ceb11b0cb0b77fd98ee3c5be5d03b6f5 (diff)
downloadmicropython-19b3fea6a885d071a1216614ee3f766aba947cbf.tar.gz
micropython-19b3fea6a885d071a1216614ee3f766aba947cbf.zip
tests: Separate out test cases that rely on float support to float/ dir.
Diffstat (limited to 'tests/basics/bytes_construct.py')
-rw-r--r--tests/basics/bytes_construct.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/basics/bytes_construct.py b/tests/basics/bytes_construct.py
index 1eb6d3e485..793d5115e1 100644
--- a/tests/basics/bytes_construct.py
+++ b/tests/basics/bytes_construct.py
@@ -11,4 +11,3 @@ print(bytes(bytearray(4)))
print(bytes(array('b', [1, 2])))
print(bytes(array('h', [1, 2])))
print(bytes(array('I', [1, 2])))
-print(bytes(array('f', [1, 2.3])))