aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/inputmethod/latin/InputLogicTestsNonEnglish.java
diff options
context:
space:
mode:
authorKurt Partridge <kep@google.com>2012-04-16 20:36:24 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-04-16 20:36:24 -0700
commit40edd14c159c321fcb736225520daf1a6f904f09 (patch)
tree4bae1bf8df7687cbd4f0167185500e95befcd32a /tests/src/com/android/inputmethod/latin/InputLogicTestsNonEnglish.java
parent9c2a96aa6cb6d8c1f7a559dbd7051302cfc6150b (diff)
parent9bfb6202154e06d7156f2f374dd9359f1be4eb68 (diff)
downloadlatinime-40edd14c159c321fcb736225520daf1a6f904f09.tar.gz
latinime-40edd14c159c321fcb736225520daf1a6f904f09.tar.xz
latinime-40edd14c159c321fcb736225520daf1a6f904f09.zip
Merge "add logPoint for manual correction (inc touch pos)"
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/InputLogicTestsNonEnglish.java')
-rw-r--r--tests/src/com/android/inputmethod/latin/InputLogicTestsNonEnglish.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/src/com/android/inputmethod/latin/InputLogicTestsNonEnglish.java b/tests/src/com/android/inputmethod/latin/InputLogicTestsNonEnglish.java
index b2b9601b6..78143ac5b 100644
--- a/tests/src/com/android/inputmethod/latin/InputLogicTestsNonEnglish.java
+++ b/tests/src/com/android/inputmethod/latin/InputLogicTestsNonEnglish.java
@@ -33,7 +33,7 @@ public class InputLogicTestsNonEnglish extends InputTestsBase {
final String EXPECTED_RESULT = "test !";
changeLanguage("fr");
type(WORD1_TO_TYPE);
- mLatinIME.pickSuggestionManually(0, WORD1_TO_TYPE);
+ pickSuggestionManually(0, WORD1_TO_TYPE);
type(WORD2_TO_TYPE);
assertEquals("manual pick then separator for French", EXPECTED_RESULT,
mTextView.getText().toString());
@@ -49,8 +49,8 @@ public class InputLogicTestsNonEnglish extends InputTestsBase {
runMessages();
assertTrue("type word then type space should display punctuation strip",
mLatinIME.isShowingPunctuationList());
- mLatinIME.pickSuggestionManually(0, PUNCTUATION_FROM_STRIP);
- mLatinIME.pickSuggestionManually(0, PUNCTUATION_FROM_STRIP);
+ pickSuggestionManually(0, PUNCTUATION_FROM_STRIP);
+ pickSuggestionManually(0, PUNCTUATION_FROM_STRIP);
assertEquals("type word then type space then punctuation from strip twice for French",
EXPECTED_RESULT, mTextView.getText().toString());
}