summaryrefslogtreecommitdiff
path: root/tests/float/math_fun_special.py
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2025-07-22 22:58:52 +1000
committerDamien George <damien@micropython.org>2025-07-24 12:48:18 +1000
commit7729e80fdddbd9f75cb350de70a84ed26cb601fd (patch)
treeed5f7327b25021e88970b4b3582aa7d21befd350 /tests/float/math_fun_special.py
parent6a4306a0df1e936954bfeff65297d74b9b0954e2 (diff)
all: Go back to using default ruff quote style.
Commit dc2fcfcc5511a371ff684f7d7772e7a7b479246d seems to have accidentally changed the ruff quote style to "preserve", instead of keeping it at the default which is "double". Put it back to the default and update relevant .py files with this rule. Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/float/math_fun_special.py')
-rw-r--r--tests/float/math_fun_special.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/float/math_fun_special.py b/tests/float/math_fun_special.py
index a747f73e9..ecacedec5 100644
--- a/tests/float/math_fun_special.py
+++ b/tests/float/math_fun_special.py
@@ -52,6 +52,6 @@ for function_name, function, test_vals in functions:
except ValueError as e:
ans = str(e)
# a tiny error in REPR_C value for 1.5204998778 causes a wrong rounded value
- if is_REPR_C and function_name == 'erfc' and ans == "1.521":
+ if is_REPR_C and function_name == "erfc" and ans == "1.521":
ans = "1.52"
print("{}({:.4g}) = {}".format(function_name, value, ans))