From 71f9b8d50b708b590dd7fe9edbe5a298d5b5adfa Mon Sep 17 00:00:00 2001 From: Akifumi Yoshimoto Date: Fri, 3 Oct 2014 18:56:41 +0900 Subject: [PATCH] Fix bug of testCharacterTableIsPresent (dicttool test) Bug:17097992 Change-Id: Ibe343b8cc704631e84ed9d3a39feee30a54bdc38 --- .../latin/makedict/BinaryDictDecoderEncoderTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java b/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java index 215c9ddc7..df137377c 100644 --- a/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java +++ b/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java @@ -307,7 +307,7 @@ public class BinaryDictDecoderEncoderTests extends AndroidTestCase { public void testCharacterTableIsPresent() throws IOException, UnsupportedFormatException { final String[] wordSource = {"words", "used", "for", "testing", "a", "code point", "table"}; final List words = Arrays.asList(wordSource); - final String correctCodePointTable = "eotdsanirfg bclwup"; + final String correctCodePointTable = "toesdrniawuplgfcb "; final String dictName = "codePointTableTest"; final String dictVersion = Long.toString(System.currentTimeMillis()); final String codePointTableAttribute = DictionaryHeader.CODE_POINT_TABLE_KEY;