aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/inputmethod/latin/ExpandableDictionaryTests.java
diff options
context:
space:
mode:
authorKeisuke Kuroyanagi <ksk@google.com>2013-08-26 02:59:14 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-08-26 02:59:14 -0700
commit3bd5bd88c4319ccb907c8759e6cbe0c39677f469 (patch)
treedc20c79791a065cc5dbf88fc16d99750c3c2b670 /tests/src/com/android/inputmethod/latin/ExpandableDictionaryTests.java
parentbfb4c3aa7fb333d9a62d83a1853e3881b2b06919 (diff)
parent78ab1bb661cedb8dcd90f1b2d410a0bd2486a9ba (diff)
downloadlatinime-3bd5bd88c4319ccb907c8759e6cbe0c39677f469.tar.gz
latinime-3bd5bd88c4319ccb907c8759e6cbe0c39677f469.tar.xz
latinime-3bd5bd88c4319ccb907c8759e6cbe0c39677f469.zip
am 78ab1bb6: Merge "Make DynamicPred...Base extend ExpandableBinaryDictionary."
* commit '78ab1bb661cedb8dcd90f1b2d410a0bd2486a9ba': Make DynamicPred...Base extend ExpandableBinaryDictionary.
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/ExpandableDictionaryTests.java')
-rw-r--r--tests/src/com/android/inputmethod/latin/ExpandableDictionaryTests.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/src/com/android/inputmethod/latin/ExpandableDictionaryTests.java b/tests/src/com/android/inputmethod/latin/ExpandableDictionaryTests.java
index 70be6450a..ecf3af736 100644
--- a/tests/src/com/android/inputmethod/latin/ExpandableDictionaryTests.java
+++ b/tests/src/com/android/inputmethod/latin/ExpandableDictionaryTests.java
@@ -28,8 +28,7 @@ public class ExpandableDictionaryTests extends AndroidTestCase {
private final static int UNIGRAM_FREQ = 50;
public void testAddWordAndGetWordFrequency() {
- final ExpandableDictionary dict = new ExpandableDictionary(getContext(),
- Dictionary.TYPE_USER);
+ final ExpandableDictionary dict = new ExpandableDictionary(Dictionary.TYPE_USER);
// Add words
dict.addWord("abcde", "abcde", UNIGRAM_FREQ);