From 769179d04b48f06c3998942c83020a56fd5be6aa Mon Sep 17 00:00:00 2001 From: VictoriousRaptor <10308169+VictoriousRaptor@users.noreply.github.com> Date: Sun, 7 Dec 2025 19:28:17 +0800 Subject: [PATCH] Fix test case Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Flow.Launcher.Test/TranslationMappingTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher.Test/TranslationMappingTest.cs b/Flow.Launcher.Test/TranslationMappingTest.cs index be208d599..bcbbf8bf8 100644 --- a/Flow.Launcher.Test/TranslationMappingTest.cs +++ b/Flow.Launcher.Test/TranslationMappingTest.cs @@ -47,7 +47,7 @@ namespace Flow.Launcher.Test mapping.AddNewIndex(3, 1); // w mapping.AddNewIndex(4, 1); // ' ' mapping.AddNewIndex(5, 4); // 用 -> Yong - mapping.AddNewIndex(11, 2); // 户 -> Hu + mapping.AddNewIndex(10, 2); // 户 -> Hu var result = mapping.MapToOriginalIndex(translatedIndex); ClassicAssert.AreEqual(expectedOriginalIndex, result);