diff options
author | 2012-06-16 09:57:46 +0900 | |
---|---|---|
committer | 2012-06-19 03:27:37 +0900 | |
commit | b0561ae98063f83684706886490ba5670138fccc (patch) | |
tree | 0c614dfd4dc5706235b19b91f1fc820219dc07f3 /tests/src/com/android/inputmethod/latin/InputTestsBase.java | |
parent | 64e52051cfa62523c3f09c61a9dae34198470792 (diff) | |
download | latinime-b0561ae98063f83684706886490ba5670138fccc.tar.gz latinime-b0561ae98063f83684706886490ba5670138fccc.tar.xz latinime-b0561ae98063f83684706886490ba5670138fccc.zip |
Remove a member (B5)
The new call in the test ensures getCurrentInputEditorInfo actually
works.
Change-Id: I2ee407bd9927d22db537d12f339e2b977a38054a
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/InputTestsBase.java')
-rw-r--r-- | tests/src/com/android/inputmethod/latin/InputTestsBase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/com/android/inputmethod/latin/InputTestsBase.java b/tests/src/com/android/inputmethod/latin/InputTestsBase.java index eb47fd517..c672d5126 100644 --- a/tests/src/com/android/inputmethod/latin/InputTestsBase.java +++ b/tests/src/com/android/inputmethod/latin/InputTestsBase.java @@ -130,11 +130,11 @@ public class InputTestsBase extends ServiceTestCase<LatinIME> { (LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE); final ViewGroup vg = new FrameLayout(getContext()); final View inputView = inflater.inflate(R.layout.input_view, vg); + mLatinIME.onCreateInputMethodInterface().startInput(ic, ei); mLatinIME.setInputView(inputView); mLatinIME.onBindInput(); mLatinIME.onCreateInputView(); mLatinIME.onStartInputView(ei, false); - mLatinIME.onCreateInputMethodInterface().startInput(ic, ei); mInputConnection = ic; mKeyboard = mLatinIME.mKeyboardSwitcher.getKeyboard(); changeLanguage("en_US"); |