Fix unit test message

Change-Id: I7f98cb5784ebd7a04cd2951f0b62fa4afdcf085c
main
Tadashi G. Takaoka 2014-03-19 15:25:27 +09:00
parent 505d3247bb
commit 54d74ff74a
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ abstract class LayoutTestsBase extends KeyboardLayoutSetTestsBase {
Log.d(tag, "actual =\n" + ActualKeyboardBuilder.toString(actualKeyboard));
// Test both keyboards have the same number of rows.
assertEquals(tag + " labels"
+ "\nexpected=" + Arrays.deepToString(expectedKeyboard)
+ "\nexpected=" + ExpectedKeyboardBuilder.toString(expectedKeyboard)
+ "\nactual =" + ActualKeyboardBuilder.toString(actualKeyboard),
expectedKeyboard.length, actualKeyboard.length);
for (int r = 0; r < actualKeyboard.length; r++) {