diff options
author | 2014-06-30 06:39:22 +0000 | |
---|---|---|
committer | 2014-06-30 06:39:22 +0000 | |
commit | e44c5c5b223e07c2ff59da634c3624fb3cdb1773 (patch) | |
tree | a9dd538d81c60a855ff36c3cb3c63c553348dd55 /tests/src/com/android/inputmethod/latin/InputTestsBase.java | |
parent | cc8728408a8d4243f959119d325566b769d844ca (diff) | |
parent | 3fb5a541a44bc9a82663895fd09c342299f45b56 (diff) | |
download | latinime-e44c5c5b223e07c2ff59da634c3624fb3cdb1773.tar.gz latinime-e44c5c5b223e07c2ff59da634c3624fb3cdb1773.tar.xz latinime-e44c5c5b223e07c2ff59da634c3624fb3cdb1773.zip |
am 3fb5a541: Fix tests
* commit '3fb5a541a44bc9a82663895fd09c342299f45b56':
Fix tests
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 8406c9099..986fb1097 100644 --- a/tests/src/com/android/inputmethod/latin/InputTestsBase.java +++ b/tests/src/com/android/inputmethod/latin/InputTestsBase.java @@ -345,8 +345,8 @@ public class InputTestsBase extends ServiceTestCase<LatinIMEForTests> { waitForDictionariesToBeLoaded(); } - protected void pickSuggestionManually(final int index, final String suggestion) { - mLatinIME.pickSuggestionManually(index, new SuggestedWordInfo(suggestion, 1, + protected void pickSuggestionManually(final String suggestion) { + mLatinIME.pickSuggestionManually(new SuggestedWordInfo(suggestion, 1, SuggestedWordInfo.KIND_CORRECTION, null /* sourceDict */, SuggestedWordInfo.NOT_AN_INDEX /* indexOfTouchPointOfSecondWord */, SuggestedWordInfo.NOT_A_CONFIDENCE /* autoCommitFirstWordConfidence */)); |