diff options
author | 2015-02-09 21:03:55 +0000 | |
---|---|---|
committer | 2015-02-09 21:03:55 +0000 | |
commit | e18ab4a7c75afb9a4cd8e76d6aa70e341a9fa626 (patch) | |
tree | 6f1a3c37861e96fe89e9ff8c17534f2d08dfbb12 /tests/src/com/android/inputmethod/latin/BinaryDictionaryDecayingTests.java | |
parent | 2c36c9944ea4a4752f5c4c83bfa0b7edc22b5400 (diff) | |
parent | 644a709a5fec65c3ac1c96f18af397458fac7658 (diff) | |
download | latinime-e18ab4a7c75afb9a4cd8e76d6aa70e341a9fa626.tar.gz latinime-e18ab4a7c75afb9a4cd8e76d6aa70e341a9fa626.tar.xz latinime-e18ab4a7c75afb9a4cd8e76d6aa70e341a9fa626.zip |
am 644a709a: Remove distracter filter from client.
* commit '644a709a5fec65c3ac1c96f18af397458fac7658':
Remove distracter filter from client.
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/BinaryDictionaryDecayingTests.java')
-rw-r--r-- | tests/src/com/android/inputmethod/latin/BinaryDictionaryDecayingTests.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/src/com/android/inputmethod/latin/BinaryDictionaryDecayingTests.java b/tests/src/com/android/inputmethod/latin/BinaryDictionaryDecayingTests.java index cff489dd5..baac0883e 100644 --- a/tests/src/com/android/inputmethod/latin/BinaryDictionaryDecayingTests.java +++ b/tests/src/com/android/inputmethod/latin/BinaryDictionaryDecayingTests.java @@ -782,8 +782,7 @@ public class BinaryDictionaryDecayingTests extends AndroidTestCase { int prevWordCount = 0; for (int i = 0; i < inputEvents.length; i++) { final String word = CodePointUtils.generateWord(random, codePointSet); - inputEvents[i] = new WordInputEventForPersonalization(word, ngramContext, - true /* isValid */, mCurrentTime); + inputEvents[i] = new WordInputEventForPersonalization(word, ngramContext, mCurrentTime); unigrams.add(word); if (prevWordCount >= 2) { final Pair<String, String> prevWordsPair = bigrams.get(bigrams.size() - 1); |