Skip to content

Commit

Permalink
fixup 343c386
Browse files Browse the repository at this point in the history
  • Loading branch information
eyalroz committed Aug 7, 2021
1 parent ae901d4 commit 5edee86
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/test_suite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -831,6 +831,7 @@ TEST_CASE("float", "[]" ) {
PRINTING_CHECK("-0", ==, test::sprintf_, buffer, "%g", -0.);
PRINTING_CHECK("+0", ==, test::sprintf_, buffer, "%+g", 0.);
PRINTING_CHECK("-0", ==, test::sprintf_, buffer, "%+g", -0.);
PRINTING_CHECK("-4e+04", ==, test::sprintf_, buffer, "%.1g", -40661.5);
PRINTING_CHECK("-4.e+04", ==, test::sprintf_, buffer, "%#.1g", -40661.5);
#endif

Expand Down

0 comments on commit 5edee86

Please sign in to comment.