diff --git a/test/unit_test/static/custom_rep_test_min_req.cpp b/test/unit_test/static/custom_rep_test_min_req.cpp index 10ffaa01..477e07e5 100644 --- a/test/unit_test/static/custom_rep_test_min_req.cpp +++ b/test/unit_test/static/custom_rep_test_min_req.cpp @@ -230,11 +230,11 @@ static_assert(length>(length(1)).count() == // unit conversions static_assert(length>(length>(1)).count() == impl(1000)); -static_assert(length>(length>(expl(1))).count() == expl(1000)); +static_assert(length>(length>(expl(1))).count() == expl(1000)); static_assert(length>(length>(1)).count() == impl_impl(1000)); static_assert(length>(length>(1)).count() == impl_expl(1000)); -static_assert(length>(length>(expl_impl(1))).count() == expl_impl(1000)); -static_assert(length>(length>(expl_expl(1))).count() == expl_expl(1000)); +static_assert(length>(length>(expl_impl(1))).count() == expl_impl(1000)); +static_assert(length>(length>(expl_expl(1))).count() == expl_expl(1000)); // static_assert(length>(length>(2000)).count() == impl(2)); // should not compile (truncating conversion) static_assert(length>(quantity_cast(length>(2000))).count() == impl(2)); @@ -252,15 +252,15 @@ static_assert(length>(quantity_cast(length< // static_assert(velocity>(velocity>(72)).count() == impl(20)); // should not compile (truncating conversion) static_assert(velocity>(quantity_cast(velocity>(72))).count() == impl(20)); // static_assert(velocity>(velocity>(expl(72))).count() == expl(20)); // should not compile (truncating conversion) -static_assert(velocity>(quantity_cast(velocity>(expl(72)))).count() == expl(20)); +static_assert(velocity>(quantity_cast(velocity>(expl(72)))).count() == expl(20)); // static_assert(velocity>(velocity>(72)).count() == impl_impl(20)); // should not compile (truncating conversion) static_assert(velocity>(quantity_cast(velocity>(72))).count() == impl_impl(20)); // static_assert(velocity>(velocity>(72)).count() == impl_expl(20)); // should not compile (truncating conversion) static_assert(velocity>(quantity_cast(velocity>(72))).count() == impl_expl(20)); // static_assert(velocity>(velocity>(expl_impl(72))).count() == expl_impl(20)); // should not compile (truncating conversion) -static_assert(velocity>(quantity_cast(velocity>(expl_impl(72)))).count() == expl_impl(20)); +static_assert(velocity>(quantity_cast(velocity>(expl_impl(72)))).count() == expl_impl(20)); // static_assert(velocity>(velocity>(expl_expl(72))).count() == expl_expl(20)); // should not compile (truncating conversion) -static_assert(velocity>(quantity_cast(velocity>(expl_expl(72)))).count() == expl_expl(20)); +static_assert(velocity>(quantity_cast(velocity>(expl_expl(72)))).count() == expl_expl(20)); // static_assert(velocity>(velocity>(20)).count() == impl(72)); // should not compile (truncating conversion) static_assert(velocity>(quantity_cast(velocity>(20))).count() == impl(72));