From 9074ec8f018d313134997d826a0b7e79236a7147 Mon Sep 17 00:00:00 2001 From: cxnnqr Date: Thu, 1 Feb 2024 23:15:12 +0100 Subject: [PATCH] fixed test_ggTOf5And10 --- test/ggT/test_ggT.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/ggT/test_ggT.c b/test/ggT/test_ggT.c index 3b46367..c8473d5 100644 --- a/test/ggT/test_ggT.c +++ b/test/ggT/test_ggT.c @@ -4,9 +4,9 @@ void setUp(){} void tearDown(){} -void test_ggTOf2And10(){ +void test_ggTOf5And10(){ //arrange - int a = 2; + int a = 5; int b = 10; int expected = 5; @@ -14,5 +14,5 @@ void test_ggTOf2And10(){ int result = ggT(a,b); //assert - TEST_ASSERT_EQUAL_STRING(expected, result); + TEST_ASSERT_EQUAL_INT(expected, result); }