summaryrefslogtreecommitdiff
path: root/tests/float/float_struct.py
diff options
context:
space:
mode:
authorLucian Copeland <hierophect@gmail.com>2020-06-04 16:15:38 -0400
committerLucian Copeland <hierophect@gmail.com>2020-06-04 16:15:38 -0400
commita0977cac7b92233a3ea52404fe59f9a4a3d3ac4a (patch)
tree2e8e7d182871589aaaf9cc72c58b24b5b7f77320 /tests/float/float_struct.py
parentd14e34449b5b70ea5e39938324e27af76498b0dd (diff)
parentfffe171d5fed98b8db6f2a59393987a8eb5313e9 (diff)
Merge remote-tracking branch 'upstream/master' into stm32-LSE-startup-fix
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'))
-