Skip to content

Commit

Permalink
fix forced failure
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed Apr 23, 2024
1 parent bc6d3ee commit 7156f77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gsw_check_functions.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ int assert_equal(int actual, int expected, const char *test_name) {
void test_infunnel() {
// Inside the funnel.
int result1 = gsw_infunnel(35.0, 5.0, 400);
assert_equal(result1, 0, "gsw_infunnel -> inside funnel");
assert_equal(result1, 1, "gsw_infunnel -> inside funnel");

int result2 = gsw_infunnel(20.0, 7.0, 2000);
assert_equal(result2, 1, "gsw_infunnel -> inside funnel");
Expand Down

0 comments on commit 7156f77

Please sign in to comment.