From 947d5448b477343fb1b113e24cb3d3b904a9d3e7 Mon Sep 17 00:00:00 2001 From: Damien George Date: Fri, 1 Aug 2025 11:12:08 +1000 Subject: [PATCH] tests/cpydiff: Remove passing types_float_rounding test. Since commit dbbaa959c85c04dbbcde5908b5d0775b574e44e7, this test now produces the same output on MicroPython as CPython does, namely -1e+01. Signed-off-by: Damien George --- tests/cpydiff/types_float_rounding.py | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 tests/cpydiff/types_float_rounding.py diff --git a/tests/cpydiff/types_float_rounding.py b/tests/cpydiff/types_float_rounding.py deleted file mode 100644 index 206e359ed9..0000000000 --- a/tests/cpydiff/types_float_rounding.py +++ /dev/null @@ -1,8 +0,0 @@ -""" -categories: Types,float -description: uPy and CPython outputs formats may differ -cause: Unknown -workaround: Unknown -""" - -print("%.1g" % -9.9)