diff --git a/Tests/AK/TestFormat.cpp b/Tests/AK/TestFormat.cpp index 69b96d1ec77..2a63259261f 100644 --- a/Tests/AK/TestFormat.cpp +++ b/Tests/AK/TestFormat.cpp @@ -133,8 +133,7 @@ TEST_CASE(replacement_field) TEST_CASE(replacement_field_regression) { - // FIXME: Compiletime check bypass: cannot parse '}}' correctly. - EXPECT_EQ(ByteString::formatted("{:{}}"sv, "", static_cast(6)), " "); + EXPECT_EQ(ByteString::formatted("{:{}}", "", static_cast(6)), " "); } TEST_CASE(complex_string_specifiers)