aboutsummaryrefslogtreecommitdiff
path: root/test/format-impl-test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/format-impl-test.cc')
-rw-r--r--test/format-impl-test.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/format-impl-test.cc b/test/format-impl-test.cc
index 4d6198b6..eda1f239 100644
--- a/test/format-impl-test.cc
+++ b/test/format-impl-test.cc
@@ -246,13 +246,6 @@ TEST(format_impl_test, format_error_code) {
}
}
-TEST(format_impl_test, compute_width) {
- EXPECT_EQ(4,
- fmt::detail::compute_width(
- fmt::basic_string_view<fmt::detail::char8_type>(
- reinterpret_cast<const fmt::detail::char8_type*>("ёжик"))));
-}
-
// Tests fmt::detail::count_digits for integer type Int.
template <typename Int> void test_count_digits() {
for (Int i = 0; i < 10; ++i) EXPECT_EQ(1u, fmt::detail::count_digits(i));