aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src
diff options
context:
space:
mode:
authorYuichiro Hanada <yhanada@google.com>2013-09-10 03:30:47 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-09-10 03:30:47 -0700
commit6b98419ee17f7a534df31892055a0d710e55121f (patch)
treec4280303288bd7862f5b414b97a5e22432923292 /tests/src
parent4754ac4c65d88dd1f7127da3cc968350bb662116 (diff)
parente193c5255d96d3971ee207b459a8a1e91c0d176c (diff)
downloadlatinime-6b98419ee17f7a534df31892055a0d710e55121f.tar.gz
latinime-6b98419ee17f7a534df31892055a0d710e55121f.tar.xz
latinime-6b98419ee17f7a534df31892055a0d710e55121f.zip
am e193c525: Revert Ida230ca42 and I6adf7d08f.
* commit 'e193c5255d96d3971ee207b459a8a1e91c0d176c': Revert Ida230ca42 and I6adf7d08f.
Diffstat (limited to 'tests/src')
-rw-r--r--tests/src/com/android/inputmethod/latin/InputTestsBase.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/src/com/android/inputmethod/latin/InputTestsBase.java b/tests/src/com/android/inputmethod/latin/InputTestsBase.java
index da1fb6f0d..2603b35f5 100644
--- a/tests/src/com/android/inputmethod/latin/InputTestsBase.java
+++ b/tests/src/com/android/inputmethod/latin/InputTestsBase.java
@@ -48,8 +48,6 @@ public class InputTestsBase extends ServiceTestCase<LatinIMEForTests> {
protected static final int DELAY_TO_WAIT_FOR_UNDERLINE = 200;
// The message that sets predictions is posted with a 200 ms delay
protected static final int DELAY_TO_WAIT_FOR_PREDICTIONS = 200;
- // The message that sets auto-corrections is posted within a 100 ms delay.
- protected static final int DELAY_TO_WAIT_FOR_AUTOCORRECTION = 100;
protected LatinIME mLatinIME;
protected Keyboard mKeyboard;
@@ -223,7 +221,6 @@ public class InputTestsBase extends ServiceTestCase<LatinIMEForTests> {
protected void type(final String stringToType) {
for (int i = 0; i < stringToType.length(); i = stringToType.offsetByCodePoints(i, 1)) {
type(stringToType.codePointAt(i));
- sleep(DELAY_TO_WAIT_FOR_AUTOCORRECTION);
}
}