diff --git a/tests/src/com/android/inputmethod/compat/TextInfoCompatUtilsTests.java b/tests/src/com/android/inputmethod/compat/TextInfoCompatUtilsTests.java
index e71d7746006defe4f08704010631170275400def..5721ed1ffc251376154b8a94c7a1055923505ed6 100644
--- a/tests/src/com/android/inputmethod/compat/TextInfoCompatUtilsTests.java
+++ b/tests/src/com/android/inputmethod/compat/TextInfoCompatUtilsTests.java
@@ -57,7 +57,8 @@ public class TextInfoCompatUtilsTests extends AndroidTestCase {
                 TEST_SEQUENCE_NUMBER);
         final Spanned expectedSpanned = (Spanned) text.subSequence(TEST_CHAR_SEQUENCE_START,
                 TEST_CHAR_SEQUENCE_END);
-        final CharSequence actualCharSequence = TextInfoCompatUtils.getCharSequence(textInfo, null);
+        final CharSequence actualCharSequence =
+                TextInfoCompatUtils.getCharSequence(textInfo, textInfo.getText());
 
         // This should be valid even if TextInfo#getCharSequence is not supported.
         assertTrue(TextUtils.equals(expectedSpanned, actualCharSequence));