diff options
author | 2013-09-10 16:16:25 +0900 | |
---|---|---|
committer | 2013-09-10 19:08:43 +0900 | |
commit | e193c5255d96d3971ee207b459a8a1e91c0d176c (patch) | |
tree | 31ecc0c0ecb75f6ae52a138c4bfaeee6fefeafac /tests/src/com/android/inputmethod/latin/InputTestsBase.java | |
parent | ef073f402407b19f5be90ddf68beb874945e82be (diff) | |
download | latinime-e193c5255d96d3971ee207b459a8a1e91c0d176c.tar.gz latinime-e193c5255d96d3971ee207b459a8a1e91c0d176c.tar.xz latinime-e193c5255d96d3971ee207b459a8a1e91c0d176c.zip |
Revert Ida230ca42 and I6adf7d08f.
Change-Id: I2ddb250d5a473ea955a5171656974de7288a13f7
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/InputTestsBase.java')
-rw-r--r-- | tests/src/com/android/inputmethod/latin/InputTestsBase.java | 3 |
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); } } |