Index: content/public/android/javatests/src/org/chromium/content/browser/input/AdapterInputConnectionTest.java |
diff --git a/content/public/android/javatests/src/org/chromium/content/browser/input/AdapterInputConnectionTest.java b/content/public/android/javatests/src/org/chromium/content/browser/input/AdapterInputConnectionTest.java |
index 69be5f86e2a3188019a90775fb7c741e001f5025..8cabddb05333a41f892bc4e0489ff36d046b5ec1 100644 |
--- a/content/public/android/javatests/src/org/chromium/content/browser/input/AdapterInputConnectionTest.java |
+++ b/content/public/android/javatests/src/org/chromium/content/browser/input/AdapterInputConnectionTest.java |
@@ -44,22 +44,18 @@ public class AdapterInputConnectionTest extends ContentShellTestBase { |
public void testSetComposingText() throws Throwable { |
mConnection.setComposingText("t", 1); |
assertCorrectState("t", 1, 1, 0, 1, mConnection.getImeStateForTesting()); |
- mConnection.setEditableText("t", 1, 1, 0, 1); |
mWrapper.verifyUpdateSelectionCall(0, 1, 1, 0 ,1); |
mConnection.setComposingText("te", 1); |
assertCorrectState("te", 2, 2, 0, 2, mConnection.getImeStateForTesting()); |
- mConnection.setEditableText("te", 2, 2, 0, 2); |
mWrapper.verifyUpdateSelectionCall(1, 2, 2, 0 ,2); |
mConnection.setComposingText("tes", 1); |
assertCorrectState("tes", 3, 3, 0, 3, mConnection.getImeStateForTesting()); |
- mConnection.setEditableText("tes", 3, 3, 0, 3); |
mWrapper.verifyUpdateSelectionCall(2, 3, 3, 0, 3); |
mConnection.setComposingText("test", 1); |
assertCorrectState("test", 4, 4, 0, 4, mConnection.getImeStateForTesting()); |
- mConnection.setEditableText("test", 4, 4, 0, 4); |
mWrapper.verifyUpdateSelectionCall(3, 4, 4, 0, 4); |
} |