From b053fa88730db16f26da98e81cde8b454b0bf412 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Tue, 6 Feb 2024 16:50:19 +0100 Subject: [PATCH] Fixing a problem --- src/test/test_funktionen.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/test/test_funktionen.c b/src/test/test_funktionen.c index 9718c02..71f0ef8 100644 --- a/src/test/test_funktionen.c +++ b/src/test/test_funktionen.c @@ -12,11 +12,6 @@ void tearDown(void) } -void test_1000_plus_1(void) -{ - /* arrange */ - int actual; - int expected = 1000; void test_square(void) { float result = square(2.5); @@ -95,6 +90,11 @@ void test_remainderValue(void) { TEST_ASSERT_FLOAT_WITHIN(0.000001, 1.5, result); } +void test_1000_plus_1(void) +{ + /* arrange */ + int actual; + int expected = 1000; /* act */ actual = addThreeNumbers(500, 249, 251);