am 54d74ff7: Fix unit test message

* commit '54d74ff74a6a1da08f11907f2be590fc3721c058':
  Fix unit test message
main
Tadashi G. Takaoka 2014-03-18 23:31:08 -07:00 committed by Android Git Automerger
commit d941dce8b8
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++) {