Skip to content

Commit

Permalink
breakit
Browse files Browse the repository at this point in the history
  • Loading branch information
John McFarlane committed Jan 30, 2022
1 parent fe4f075 commit d35f5a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/scaled_int/elastic/to_chars_static.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ namespace {
TEST(to_chars_static, elastic_scaled_n123456_) // NOLINT
{
using namespace cnl::literals;
constexpr auto expected{cnl::to_chars_static_result<7>{{'-', '1', '2', '3', '4', '5', '6'}, 7}};
constexpr auto expected{cnl::to_chars_static_result<7>{{'-', '1', '9', '3', '4', '5', '6'}, 7}};
constexpr auto actual{cnl::to_chars_static(-123456._cnl)};
#if !defined(_MSC_VER)
static_assert(identical(expected, actual));
// static_assert(identical(expected, actual));
#endif
ASSERT_EQ(expected, actual);
}
Expand Down

0 comments on commit d35f5a8

Please sign in to comment.