From b92941d197ff319197467c8d89bb6e4022ce84fd Mon Sep 17 00:00:00 2001 From: Khaled Date: Sun, 4 Feb 2024 20:13:04 +0100 Subject: [PATCH] test sine funktion version 2 --- src/test/test_funktionen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/test_funktionen.c b/src/test/test_funktionen.c index 28ea824..3f9817b 100644 --- a/src/test/test_funktionen.c +++ b/src/test/test_funktionen.c @@ -140,7 +140,7 @@ void test_howManyTimes_e_appearsIn_Beere(void) void test_sine(void) { float result = sine(0.5); - TEST_ASSERT_FLOAT_WITHIN(0.000001, 0.479426, result); + TEST_ASSERT_EQUAL_FLOAT(0.479426, result); } #endif \ No newline at end of file