diff options
author | 2013-05-15 04:26:29 -0700 | |
---|---|---|
committer | 2013-05-15 07:58:27 -0700 | |
commit | b1e37e4a478a577c59930767148e50f8f45af21f (patch) | |
tree | d18744d9e4048446a206c552d123d9e12d45e48e /tests/src/com/android/inputmethod/latin/InputTestsBase.java | |
parent | 25f0c8089eecfcded7f41c66453bd874ba92219a (diff) | |
download | latinime-b1e37e4a478a577c59930767148e50f8f45af21f.tar.gz latinime-b1e37e4a478a577c59930767148e50f8f45af21f.tar.xz latinime-b1e37e4a478a577c59930767148e50f8f45af21f.zip |
am f1dcf725: Merge "Don\'t process recorrection or resets when not shown"
* commit 'f1dcf725061b3e61e40540566a5385cf4934f424':
Don't process recorrection or resets when not shown
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 807c9f3c4..aec4aaca1 100644 --- a/tests/src/com/android/inputmethod/latin/InputTestsBase.java +++ b/tests/src/com/android/inputmethod/latin/InputTestsBase.java @@ -39,7 +39,7 @@ import com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo; import java.util.Locale; -public class InputTestsBase extends ServiceTestCase<LatinIME> { +public class InputTestsBase extends ServiceTestCase<LatinIMEForTests> { private static final String PREF_DEBUG_MODE = "debug_mode"; @@ -121,7 +121,7 @@ public class InputTestsBase extends ServiceTestCase<LatinIME> { } public InputTestsBase() { - super(LatinIME.class); + super(LatinIMEForTests.class); } // TODO: Isn't there a way to make this generic somehow? We can take a <T> and return a <T> |