summaryrefslogtreecommitdiff
path: root/tests/float/float_struct.py
diff options
context:
space:
mode:
authorsommersoft <sommersoft@gmail.com>2020-06-20 08:41:41 -0500
committersommersoft <sommersoft@gmail.com>2020-06-20 08:41:41 -0500
commit023054e67acdd209c7990bba19b460adc4d6001e (patch)
treeb6002654bee95398f620cbdfd002d8e04c04ca7d /tests/float/float_struct.py
parentc7b6d35fd43ca192c3e7e95bf0a0f2ea0b0fc4a5 (diff)
parent986664659e8408f25d3d8aa58926046cafede39f (diff)
Merge branch 'main' of https://github.com/adafruit/circuitpython into ci_check_vid_pid
Diffstat (limited to 'tests/float/float_struct.py')
-rw-r--r--tests/float/float_struct.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/float/float_struct.py b/tests/float/float_struct.py
index c4c186b89..dd7a418ad 100644
--- a/tests/float/float_struct.py
+++ b/tests/float/float_struct.py
@@ -15,4 +15,3 @@ for fmt in ('f', 'd', '>f', '>d', '<f', '<d'):
x = struct.pack(fmt, i)
v = struct.unpack(fmt, x)[0]
print('%2s: %.17f - %s' % (fmt, v, (i == v) and 'passed' or 'failed'))
-