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

Commit 857933bd authored by Victor Chang's avatar Victor Chang Committed by android-build-merger
Browse files

Fix FormatterTest#testFormatShortElapsedTime due to CLDR 34 change

am: 8ac807e0

Change-Id: Id817a7c14047a1a4c6069791caab94c6e64f880e
parents 66d50469 8ac807e0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -162,7 +162,7 @@ public class FormatterTest {

        // Make sure it works on different locales.
        setLocale(Locale.FRANCE);
        assertEquals("2 j", Formatter.formatShortElapsedTime(mContext, 2 * DAY));
        assertEquals("2\u202fj", Formatter.formatShortElapsedTime(mContext, 2 * DAY));
    }

    @Test