From 5fe1d389553319e4d6554343141e5e4162f6776b Mon Sep 17 00:00:00 2001 From: Pavel Shliak Date: Wed, 6 Nov 2024 11:31:13 +0400 Subject: [PATCH] Tests: Remove duplicated test for UnicodeCharacterTypes --- Tests/LibUnicode/TestUnicodeCharacterTypes.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Tests/LibUnicode/TestUnicodeCharacterTypes.cpp b/Tests/LibUnicode/TestUnicodeCharacterTypes.cpp index b5b033ceda2..e5743c3e0fb 100644 --- a/Tests/LibUnicode/TestUnicodeCharacterTypes.cpp +++ b/Tests/LibUnicode/TestUnicodeCharacterTypes.cpp @@ -237,14 +237,6 @@ TEST_CASE(script) EXPECT(!Unicode::code_point_has_script(code_point, script_greek)); } - for (u32 code_point = 0x400; code_point <= 0x481; ++code_point) { - EXPECT(Unicode::code_point_has_script(code_point, script_cyrillic)); - EXPECT(Unicode::code_point_has_script_extension(code_point, script_cyrillic)); - - EXPECT(!Unicode::code_point_has_script(code_point, script_latin)); - EXPECT(!Unicode::code_point_has_script(code_point, script_greek)); - } - for (u32 code_point = 0x1f80; code_point <= 0x1fb4; ++code_point) { EXPECT(Unicode::code_point_has_script(code_point, script_greek)); EXPECT(Unicode::code_point_has_script_extension(code_point, script_greek));