Skip to content

Commit

Permalink
fixup! [eclipse-wakaamaGH-494] ci: Build and test on multiple archite…
Browse files Browse the repository at this point in the history
…ctures
  • Loading branch information
rettichschnidi committed Apr 7, 2021
1 parent 3d2b300 commit 1c23370
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/convert_numbers_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@ static void test_utils_textToFloat(void)
{
CU_ASSERT_DOUBLE_EQUAL(res, floats[i], floats[i]/1000000.0);
if(fabs(res - floats[i]) > fabs(floats[i]/1000000.0))
printf("%zu \"%s\" -> fail (%f)\n", i, floats_text[i], res);
printf("Entry #%zu, \"%s\" -> fail (%f)\n", i, floats_text[i], res);
}
else
{
printf("%zu \"%s\" -> fail\n", i, floats_text[i]);
printf("Entry #%zu, \"%s\" could not be converted to \"%f\"-> fail\n", i, floats_text[i], floats[i]);
}
}
}
Expand Down

0 comments on commit 1c23370

Please sign in to comment.