summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/util.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/util.c b/tests/util.c
index c3adc3dc..c2782366 100644
--- a/tests/util.c
+++ b/tests/util.c
@@ -83,6 +83,10 @@ int main (int argc, char **argv)
g_assert (!tp_strdiff (string, "_30123abc_5fxyz_01_ff"));
g_free (string);
+ string = tp_escape_as_identifier ("©");
+ g_assert (!tp_strdiff (string, "_c2_a9"));
+ g_free (string);
+
test_strv_contains ();
test_value_array_build ();