diff --git a/test/unit_test/runtime/math_test.cpp b/test/unit_test/runtime/math_test.cpp index 22464106..2f4c223f 100644 --- a/test/unit_test/runtime/math_test.cpp +++ b/test/unit_test/runtime/math_test.cpp @@ -187,10 +187,10 @@ TEST_CASE("ceil functions", "[ceil]") { REQUIRE(ceil(1999._q_ms) == 2_q_s); } - // TODO does not work, probably due to a bug in fpow10() see #311 - // SECTION ("ceil -1000. milliseconds with target unit second should be -1 second") { - // REQUIRE(ceil(-1000._q_ms) == -1_q_s); - // } + SECTION("ceil -1000. milliseconds with target unit second should be -1 second") + { + REQUIRE(ceil(-1000._q_ms) == -1_q_s); + } SECTION("ceil -999. milliseconds with target unit second should be 0 seconds") { REQUIRE(ceil(-999._q_ms) == 0_q_s);