From 3554026b39b575612ce71d79608156a303800552 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Fri, 10 Feb 2012 18:33:22 +0100 Subject: [PATCH] unicode: tests: Remove U+27CD from is-undefined test It's assigned in Unicode 6.1.0. --- glib/tests/unicode.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/glib/tests/unicode.c b/glib/tests/unicode.c index 2e8f575..0d7d04e 100644 --- a/glib/tests/unicode.c +++ b/glib/tests/unicode.c @@ -128,7 +128,7 @@ test_unichar_break_type (void) { G_UNICODE_BREAK_HANGUL_V_JAMO, 0x1160 }, { G_UNICODE_BREAK_HANGUL_T_JAMO, 0x11A8 }, { G_UNICODE_BREAK_HANGUL_LV_SYLLABLE, 0xAC00 }, - { G_UNICODE_BREAK_HANGUL_LVT_SYLLABLE, 0xAC01 } + { G_UNICODE_BREAK_HANGUL_LVT_SYLLABLE, 0xAC01 }, }; for (i = 0; i < G_N_ELEMENTS (examples); i++) @@ -386,7 +386,6 @@ test_defined (void) g_assert (g_unichar_isdefined ('a')); g_assert (!g_unichar_isdefined (0x10C49)); g_assert (!g_unichar_isdefined (0x169D)); - g_assert (!g_unichar_isdefined (0x27CD)); } static void -- 2.7.4