diff options
author | 2013-07-29 02:49:06 -0700 | |
---|---|---|
committer | 2013-07-29 02:49:06 -0700 | |
commit | 7755379ebd540e39cc6799a41cf38fda29e857cb (patch) | |
tree | 646c896ba0ef75985ebc5a9aaf875811dc1bbc27 /tests/src/com/android/inputmethod/latin/InputTestsBase.java | |
parent | 92faf405e528ca2541b4c2ea9c3c7b2cfb7dd457 (diff) | |
parent | d9f0c1e02065d457dc004fc26054fa75432e6661 (diff) | |
download | latinime-7755379ebd540e39cc6799a41cf38fda29e857cb.tar.gz latinime-7755379ebd540e39cc6799a41cf38fda29e857cb.tar.xz latinime-7755379ebd540e39cc6799a41cf38fda29e857cb.zip |
am d9f0c1e0: Merge "Fix an NPE"
* commit 'd9f0c1e02065d457dc004fc26054fa75432e6661':
Fix an NPE
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/InputTestsBase.java')
-rw-r--r-- | tests/src/com/android/inputmethod/latin/InputTestsBase.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/com/android/inputmethod/latin/InputTestsBase.java b/tests/src/com/android/inputmethod/latin/InputTestsBase.java index d1ce104b4..eb4f706cc 100644 --- a/tests/src/com/android/inputmethod/latin/InputTestsBase.java +++ b/tests/src/com/android/inputmethod/latin/InputTestsBase.java @@ -225,7 +225,7 @@ public class InputTestsBase extends ServiceTestCase<LatinIMEForTests> { protected void waitForDictionaryToBeLoaded() { int remainingAttempts = 300; - while (remainingAttempts > 0 && mLatinIME.mSuggest.isCurrentlyWaitingForMainDictionary()) { + while (remainingAttempts > 0 && mLatinIME.isCurrentlyWaitingForMainDictionary()) { try { Thread.sleep(200); } catch (InterruptedException e) { @@ -234,7 +234,7 @@ public class InputTestsBase extends ServiceTestCase<LatinIMEForTests> { --remainingAttempts; } } - if (!mLatinIME.mSuggest.hasMainDictionary()) { + if (!mLatinIME.hasMainDictionary()) { throw new RuntimeException("Can't initialize the main dictionary"); } } |