From d8c8acece9b004e134370db17b1f175e492b8753 Mon Sep 17 00:00:00 2001 From: Julien RICHARD Date: Sun, 6 Oct 2024 14:34:48 +0200 Subject: [PATCH] modify tests, changes numbers to remove coma --- maths/trapezoidal_rule.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maths/trapezoidal_rule.py b/maths/trapezoidal_rule.py index 7bf11295e..0cee80ab1 100644 --- a/maths/trapezoidal_rule.py +++ b/maths/trapezoidal_rule.py @@ -68,10 +68,10 @@ def f(x): :return: The value of f(x) >>> f(0) - 0.0 + 0 >>> f(1) - 1.0 + 1 >>> f(0.5) 0.25