Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarley Acheson <harley.acheson@gmail.com>2022-07-30 19:27:32 +0300
committerHarley Acheson <harley.acheson@gmail.com>2022-07-30 19:27:32 +0300
commitaf6f0f17574d52316da7a3ab1dfa14ff4b003743 (patch)
tree71bd08ab89c104477d964b63ed38e3e8993368f0
parent310be2e37cfb756da67806c0a0babb9ff472b803 (diff)
Fix failing blenlib test from previous commit
Commit 310be2e37cfb did not update UI_MENU_ARROW_SEP used in tests.
-rw-r--r--source/blender/blenlib/tests/BLI_string_search_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/tests/BLI_string_search_test.cc b/source/blender/blenlib/tests/BLI_string_search_test.cc
index aa6adae8d76..ab1d073ed33 100644
--- a/source/blender/blenlib/tests/BLI_string_search_test.cc
+++ b/source/blender/blenlib/tests/BLI_string_search_test.cc
@@ -9,7 +9,7 @@
namespace blender::string_search::tests {
/* Right arrow, keep in sync with #UI_MENU_ARROW_SEP in `UI_interface.h`. */
-#define UI_MENU_ARROW_SEP "\xe2\x96\xb6"
+#define UI_MENU_ARROW_SEP "\xe2\x96\xb8"
TEST(string_search, damerau_levenshtein_distance)
{