From 5fc67453099d88b20039acfb82bc570b05085fba Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Wed, 7 Feb 2024 17:07:28 +0100 Subject: [PATCH] refactoring: test_floorValue_of_5_7, change on test file --- 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 bc91842..43e291d 100644 --- a/src/test/test_funktionen.c +++ b/src/test/test_funktionen.c @@ -54,7 +54,7 @@ void test_factorial_of_5(void) { } -void test_floorValue(void) { +void test_floorValue_of_5_7(void) { float result = floorValue(5.7); TEST_ASSERT_EQUAL_FLOAT(5.0, result); }