diff options
author | 2014-02-18 01:56:57 -0800 | |
---|---|---|
committer | 2014-02-18 01:56:57 -0800 | |
commit | db10e81973b4207eebebc377403b67703631918a (patch) | |
tree | 0a78e90acffbff1b23163672ef7f8ece3f21a36d /tests/src/com/android/inputmethod/latin/InputLogicTests.java | |
parent | f2131ad92d8e155e28a798cb3b1848c20800462e (diff) | |
parent | 783dabb812d983a7c56dbb1071145c5e58da9ff1 (diff) | |
download | latinime-db10e81973b4207eebebc377403b67703631918a.tar.gz latinime-db10e81973b4207eebebc377403b67703631918a.tar.xz latinime-db10e81973b4207eebebc377403b67703631918a.zip |
am 783dabb8: Merge "Cleanup."
* commit '783dabb812d983a7c56dbb1071145c5e58da9ff1':
Cleanup.
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/InputLogicTests.java')
-rw-r--r-- | tests/src/com/android/inputmethod/latin/InputLogicTests.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/src/com/android/inputmethod/latin/InputLogicTests.java b/tests/src/com/android/inputmethod/latin/InputLogicTests.java index 2c23d743f..4222c66c8 100644 --- a/tests/src/com/android/inputmethod/latin/InputLogicTests.java +++ b/tests/src/com/android/inputmethod/latin/InputLogicTests.java @@ -357,7 +357,7 @@ public class InputLogicTests extends InputTestsBase { sleep(DELAY_TO_WAIT_FOR_PREDICTIONS); runMessages(); // Test the first prediction is displayed - final SuggestedWords suggestedWords = mLatinIME.getSuggestedWords(); + final SuggestedWords suggestedWords = mLatinIME.getSuggestedWordsForTest(); assertEquals("predictions after space", "Obama", suggestedWords.size() > 0 ? suggestedWords.getWord(0) : null); } @@ -371,7 +371,7 @@ public class InputLogicTests extends InputTestsBase { sleep(DELAY_TO_WAIT_FOR_PREDICTIONS); runMessages(); // Test the first prediction is displayed - final SuggestedWords suggestedWords = mLatinIME.getSuggestedWords(); + final SuggestedWords suggestedWords = mLatinIME.getSuggestedWordsForTest(); assertEquals("predictions after manual pick", "Obama", suggestedWords.size() > 0 ? suggestedWords.getWord(0) : null); } @@ -382,7 +382,7 @@ public class InputLogicTests extends InputTestsBase { sleep(DELAY_TO_WAIT_FOR_PREDICTIONS); runMessages(); // Test the first prediction is not displayed - final SuggestedWords suggestedWords = mLatinIME.getSuggestedWords(); + final SuggestedWords suggestedWords = mLatinIME.getSuggestedWordsForTest(); assertEquals("no prediction after period", 0, suggestedWords.size()); } } |