Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 38aa961b authored by Elliott Hughes's avatar Elliott Hughes Committed by Android Git Automerger
Browse files

am 2fa1e486: am 7c4ef052: Merge "Fix for CharSequenceCreator test case"

* commit '2fa1e486':
  Fix for CharSequenceCreator test case
parents 253194ab 2fa1e486
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -353,6 +353,7 @@ public class TextUtilsTest extends TestCase {
        assertNull("null CharSequence should generate null from parcel", text);
        p = Parcel.obtain();
        TextUtils.writeToParcel("test", p, 0);
        p.setDataPosition(0);
        text = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(p);
        assertEquals("conversion to/from parcel failed", "test", text);
    }