diff --git a/Tests/AK/TestStringView.cpp b/Tests/AK/TestStringView.cpp index 91b124aec8..08277100e8 100644 --- a/Tests/AK/TestStringView.cpp +++ b/Tests/AK/TestStringView.cpp @@ -181,12 +181,6 @@ TEST_CASE(constexpr_stuff) constexpr StringView test_constexpr { "foo"sv }; do_test(); } - - { - // Can initialize from char const*. - constexpr StringView test_constexpr { "foo" }; - do_test(); - } #undef do_test }