diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-12-04 09:59:09 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-12-10 16:05:14 +0100 |
commit | 0e6677fbcbb81e972e5f210e5dd7a2186fb7ba66 (patch) | |
tree | 59626c8baf20f6f1b6cd3bb7376eae9825d67f3d /tests/unit/core/test-core-command.cpp | |
parent | 6cfc01aa53c2a9ec9f02ba5c4a4169147b31cf04 (diff) | |
download | weechat-0e6677fbcbb81e972e5f210e5dd7a2186fb7ba66.zip |
core: add result of `utf8_char_size_screen` in /debug unicode
Diffstat (limited to 'tests/unit/core/test-core-command.cpp')
-rw-r--r-- | tests/unit/core/test-core-command.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/core/test-core-command.cpp b/tests/unit/core/test-core-command.cpp index df1671bf4..75216ebbf 100644 --- a/tests/unit/core/test-core-command.cpp +++ b/tests/unit/core/test-core-command.cpp @@ -215,9 +215,9 @@ TEST(CoreCommand, Debug) /* test command "/debug unicode" */ WEE_CMD_CORE(command_debug_unicode); - WEE_CHECK_MSG_CORE(" \"\u00AD\" (U+00AD, 173, 0xC2 0xAD): 2 / 1, 1 / 1, 1, 1"); - WEE_CHECK_MSG_CORE(" \"\u00E9\" (U+00E9, 233, 0xC3 0xA9): 2 / 1, 1 / 1, 1, 1"); - WEE_CHECK_MSG_CORE(" \"\u200B\" (U+200B, 8203, 0xE2 0x80 0x8B): 3 / 1, 1 / 0, 0, 0"); + WEE_CHECK_MSG_CORE(" \"\u00AD\" (U+00AD, 173, 0xC2 0xAD): 2 / 1, 1 / 1, 1, 1, 1"); + WEE_CHECK_MSG_CORE(" \"\u00E9\" (U+00E9, 233, 0xC3 0xA9): 2 / 1, 1 / 1, 1, 1, 1"); + WEE_CHECK_MSG_CORE(" \"\u200B\" (U+200B, 8203, 0xE2 0x80 0x8B): 3 / 1, 1 / 0, 0, 0, 0"); /* test command "/debug windows" */ /* TODO: write tests */ |