Skip to content

Commit

Permalink
chore: test
Browse files Browse the repository at this point in the history
  • Loading branch information
shown-zhang committed Aug 10, 2024
1 parent c47f92b commit 72783aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_fq_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ For details on how to execute/add test cases, please refer to the README
#include "stdio.h"

void test_min_base(CuTest *tc) {
CuAssertDblEquals(tc, 2.0, min(1.0, 2.0), EPSILON);
CuAssertDblEquals(tc, 1.0, min(1.0, 2.0), EPSILON);
CuAssertDblEquals(tc, 1.0, min(2.0, 1.0), EPSILON);
CuAssertDblEquals(tc, 0, min(0, 0), EPSILON);
CuAssertDblEquals(tc, -1.000003, min(-1.000002, -1.000003), EPSILON);
Expand Down

0 comments on commit 72783aa

Please sign in to comment.