diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-12-03 10:15:18 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-12-03 10:15:18 +0100 |
commit | 55569c182a9a7ef78274075c8255dda16b2304d0 (patch) | |
tree | 07a174a43b71dd6b54a7f8be6a5fded304504cd1 /tests | |
parent | f7f13352d71192a3b280f5d1a95020f34ff201a9 (diff) | |
download | weechat-55569c182a9a7ef78274075c8255dda16b2304d0.zip |
core: display hex codepoint before integer codepoint in /debug unicode
Diffstat (limited to 'tests')
-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 9732db0b3..df1671bf4 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\" (173, U+00AD, 0xC2 0xAD): 2 / 1, 1 / 1, 1, 1"); - WEE_CHECK_MSG_CORE(" \"\u00E9\" (233, U+00E9, 0xC3 0xA9): 2 / 1, 1 / 1, 1, 1"); - WEE_CHECK_MSG_CORE(" \"\u200B\" (8203, U+200B, 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"); + 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"); /* test command "/debug windows" */ /* TODO: write tests */ |