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

Commit d648d066 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Fix unit test message to use 0-based index

Change-Id: I2c91628d21dc96712f6cbea996f28f5d39fb402e
parent 858045b4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@ public class KeyboardLayoutSetTestsBase extends AndroidTestCase {
        final StringBuilder sb = new StringBuilder();
        for (int index = 0; index < subtypeList.size(); index++) {
            final InputMethodSubtype subtype = subtypeList.get(index);
            sb.append((index + 1) + ": ");
            sb.append(index + ": ");
            sb.append(SubtypeLocaleUtils.getSubtypeNameForLogging(subtype));
            sb.append("\n");
        }