aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAkifumi Yoshimoto <akifumi@google.com>2014-10-03 18:56:41 +0900
committerAkifumi Yoshimoto <akifumi@google.com>2014-10-03 18:56:41 +0900
commit71f9b8d50b708b590dd7fe9edbe5a298d5b5adfa (patch)
tree47317ebe5c9977995f297524ff576871836fd084 /tests
parentfb051c3957ae17061204b06258aec3b2e0f05034 (diff)
downloadlatinime-71f9b8d50b708b590dd7fe9edbe5a298d5b5adfa.tar.gz
latinime-71f9b8d50b708b590dd7fe9edbe5a298d5b5adfa.tar.xz
latinime-71f9b8d50b708b590dd7fe9edbe5a298d5b5adfa.zip
Fix bug of testCharacterTableIsPresent (dicttool test)
Bug:17097992 Change-Id: Ibe343b8cc704631e84ed9d3a39feee30a54bdc38
Diffstat (limited to 'tests')
-rw-r--r--tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java2
1 files changed, 1 insertions, 1 deletions
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<String> 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;