aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java
diff options
context:
space:
mode:
authorAkifumi Yoshimoto <akifumi@google.com>2014-10-02 09:29:07 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-10-02 09:29:07 +0000
commit918b05cc04dc50f79647c5806058cdff65df4568 (patch)
treec3f0370923ed3699e529c90aa162f0cb4b14024e /tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java
parent9443530625b0fc3acb3dc3c1bb03f54c791cdf41 (diff)
parent7e5614520a581afa79a51677e973a9ff6dc29162 (diff)
downloadlatinime-918b05cc04dc50f79647c5806058cdff65df4568.tar.gz
latinime-918b05cc04dc50f79647c5806058cdff65df4568.tar.xz
latinime-918b05cc04dc50f79647c5806058cdff65df4568.zip
am 7e561452: Merge "Include a code point table in the binary dictionary."
* commit '7e5614520a581afa79a51677e973a9ff6dc29162': Include a code point table in the binary dictionary.
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 f8b68e0ce..a96b3fd0a 100644
--- a/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java
+++ b/tests/src/com/android/inputmethod/latin/makedict/BinaryDictDecoderEncoderTests.java
@@ -312,7 +312,7 @@ public class BinaryDictDecoderEncoderTests extends AndroidTestCase {
final DictBuffer dictBuffer = new ByteArrayDictBuffer(buffer);
for (final String word : sWords) {
Arrays.fill(buffer, (byte) 0);
- CharEncoding.writeString(buffer, 0, word);
+ CharEncoding.writeString(buffer, 0, word, null);
dictBuffer.position(0);
final String str = CharEncoding.readString(dictBuffer);
assertEquals(word, str);