aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java
diff options
context:
space:
mode:
authorAkifumi Yoshimoto <akifumi@google.com>2014-10-03 10:07:03 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-10-03 10:07:04 +0000
commit80861cde9d1597f770da667eca24d39889bfdb3a (patch)
tree4191d5d101ed2f50445b14143d6ebb7b392f5b57 /tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java
parent826186f66b43792b978d869069602686b81f53ab (diff)
parent71f9b8d50b708b590dd7fe9edbe5a298d5b5adfa (diff)
downloadlatinime-80861cde9d1597f770da667eca24d39889bfdb3a.tar.gz
latinime-80861cde9d1597f770da667eca24d39889bfdb3a.tar.xz
latinime-80861cde9d1597f770da667eca24d39889bfdb3a.zip
Merge "Fix bug of testCharacterTableIsPresent (dicttool test)"
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java')
-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 201b8bb77..a3e36ee69 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;