From 08be070967bb65bb9bee29ca5b130f7bece66468 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Wed, 7 Feb 2024 17:00:16 +0100 Subject: [PATCH] refactoring: test cubeRoot funktion rename with the value --- 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 42cb4dd..106edfa 100644 --- a/src/test/test_funktionen.c +++ b/src/test/test_funktionen.c @@ -27,7 +27,7 @@ void test_cube_for_2(void) { TEST_ASSERT_EQUAL_FLOAT(8.0, result); } -void test_cubeRoot(void) { +void test_cubeRoot_for_27(void) { float result = cubeRoot(27.0); TEST_ASSERT_EQUAL_FLOAT(3.0, result); }