aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/src/com/android/inputmethod/latin/SuggestTests.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/src/com/android/inputmethod/latin/SuggestTests.java b/tests/src/com/android/inputmethod/latin/SuggestTests.java
index 38a6bf464..372e940f5 100644
--- a/tests/src/com/android/inputmethod/latin/SuggestTests.java
+++ b/tests/src/com/android/inputmethod/latin/SuggestTests.java
@@ -118,8 +118,8 @@ public class SuggestTests extends SuggestTestsBase {
* Tests to make sure that zero frequency words are not suggested as completions.
*/
public void testZeroFrequencySuggestionsNegative() {
- assertNull(mHelper.getSuggestIndex("yike", "yikes"));
- assertNull(mHelper.getSuggestIndex("what", "whatcha"));
+ assertTrue(mHelper.getSuggestIndex("yike", "yikes") < 0);
+ assertTrue(mHelper.getSuggestIndex("what", "whatcha") < 0);
}
/**
@@ -127,7 +127,7 @@ public class SuggestTests extends SuggestTestsBase {
* Also such word is not considered auto correction, in some cases.
*/
public void testTooLargeEditDistance() {
- assertNull(mHelper.getSuggestIndex("sniyr", "about"));
+ assertTrue(mHelper.getSuggestIndex("sniyr", "about") < 0);
// TODO: The following test fails.
// notSuggested("the", mHelper.getAutoCorrection("rjw"));
}