mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Merge "Fix unit test message to use 0-based index"
This commit is contained in:
commit
f2b0829aa1
@ -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");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user