Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment