Skip to content

Commit

Permalink
Fixed mismatched function names for CuAssertFltEquals()
Browse files Browse the repository at this point in the history
  • Loading branch information
islandcontroller committed Apr 27, 2023
1 parent 932a90a commit 218486d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/CuTest.c
Original file line number Diff line number Diff line change
Expand Up @@ -613,9 +613,10 @@ void CuTest_EvalAssertIntEquals(cutest_case_ptr_t psTc, const char* pszFile, uns
* @param[in] llfExpected Expected value
* @param[in] llfActual Actual value
* @param[in] llfTolerance Maximum allowed deviation between both values
* @date 26.04.2023
* @date 26.04.2023
* @date 27.04.2023 Renamed to ..FltEquals to match macro invocation
******************************************************************************/
void CuTest_EvalAssertDblEquals (cutest_case_ptr_t psTc, const char* pszFile, unsigned long ulLine, long double llfExpected, long double llfActual, long double llfTolerance)
void CuTest_EvalAssertFltEquals(cutest_case_ptr_t psTc, const char* pszFile, unsigned long ulLine, long double llfExpected, long double llfActual, long double llfTolerance)
{
assert(psTc != NULL);
assert(pszFile != NULL);
Expand Down

0 comments on commit 218486d

Please sign in to comment.