diff options
author | 2013-01-09 20:55:41 +0900 | |
---|---|---|
committer | 2013-01-10 15:12:17 +0900 | |
commit | 912ad4614f4bd10d871b16b5307fed1405f8c1e2 (patch) | |
tree | 6249103217fdad86eba65075fe7d70ef3be18de0 /tests/src/com/android/inputmethod/latin/BlueUnderlineTests.java | |
parent | 95e3008d2503916a71cee322146d8a0097326000 (diff) | |
download | latinime-912ad4614f4bd10d871b16b5307fed1405f8c1e2.tar.gz latinime-912ad4614f4bd10d871b16b5307fed1405f8c1e2.tar.xz latinime-912ad4614f4bd10d871b16b5307fed1405f8c1e2.zip |
Fix international tests
Tests have been broken again by recent changes to subtype
choice within Latin IME. This fixes the problem and all tests
pass again.
This change also includes a small fix to one test that was
checking for something irrelevant.
Change-Id: I6a03dea24f99b0d2ad84c4161a8413f3060bb811
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/BlueUnderlineTests.java')
-rw-r--r-- | tests/src/com/android/inputmethod/latin/BlueUnderlineTests.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/src/com/android/inputmethod/latin/BlueUnderlineTests.java b/tests/src/com/android/inputmethod/latin/BlueUnderlineTests.java index e2d669bf6..6b4d52d62 100644 --- a/tests/src/com/android/inputmethod/latin/BlueUnderlineTests.java +++ b/tests/src/com/android/inputmethod/latin/BlueUnderlineTests.java @@ -117,7 +117,5 @@ public class BlueUnderlineTests extends InputTestsBase { // Now simulate the user moving the cursor. SpanGetter span = new SpanGetter(mTextView.getText(), UnderlineSpan.class); assertNull("should not be composing, so should not have an underline span", span.mSpan); - span = new SpanGetter(mTextView.getText(), SuggestionSpan.class); - assertNull("should not be composing, so should not have an underline span", span.mSpan); } } |