diff options
author | 2014-03-18 23:31:08 -0700 | |
---|---|---|
committer | 2014-03-18 23:31:08 -0700 | |
commit | d941dce8b81ed926ddc3148da2df592560ac21eb (patch) | |
tree | 5b528eb07d0dad63280190519f3e504dcbb8ee88 | |
parent | 04068c47c1d62e4b705b36d786ed100f33ec8343 (diff) | |
parent | 54d74ff74a6a1da08f11907f2be590fc3721c058 (diff) | |
download | latinime-d941dce8b81ed926ddc3148da2df592560ac21eb.tar.gz latinime-d941dce8b81ed926ddc3148da2df592560ac21eb.tar.xz latinime-d941dce8b81ed926ddc3148da2df592560ac21eb.zip |
am 54d74ff7: Fix unit test message
* commit '54d74ff74a6a1da08f11907f2be590fc3721c058':
Fix unit test message
-rw-r--r-- | tests/src/com/android/inputmethod/keyboard/layout/tests/LayoutTestsBase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/com/android/inputmethod/keyboard/layout/tests/LayoutTestsBase.java b/tests/src/com/android/inputmethod/keyboard/layout/tests/LayoutTestsBase.java index c51abc03e..b52d20c45 100644 --- a/tests/src/com/android/inputmethod/keyboard/layout/tests/LayoutTestsBase.java +++ b/tests/src/com/android/inputmethod/keyboard/layout/tests/LayoutTestsBase.java @@ -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++) { |