From 45396a2e0b28ff465c4ca6d95b218ff8883b7e1a Mon Sep 17 00:00:00 2001 From: fdai7801 Date: Fri, 9 Feb 2024 21:57:26 +0000 Subject: [PATCH] Update --- src/test/c/test_calculator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/c/test_calculator.c b/src/test/c/test_calculator.c index 370fcd4..89738cc 100644 --- a/src/test/c/test_calculator.c +++ b/src/test/c/test_calculator.c @@ -214,7 +214,7 @@ void test_BinToDec(void) { long long int result; // Act - result = DecToBin(100); + result = BinToDec(100); // Assert TEST_ASSERT_EQUAL_INT64(8, result);