Fix failing robotest

Fixes: 124531152
Test: robotests
Change-Id: I4442ae543b062ef17b4bfd828134ede879d2b22d
This commit is contained in:
Fan Zhang
2019-02-15 15:46:58 -08:00
parent 1aa75aa71a
commit 9859b8b0b0
2 changed files with 8 additions and 9 deletions

View File

@@ -142,9 +142,9 @@ public class UserDictionaryListControllerTest {
String sortOrder) {
if (hasDictionary) {
final MatrixCursor cursor = new MatrixCursor(
new String[] {UserDictionary.Words.LOCALE});
cursor.addRow(new Object[] {"en"});
cursor.addRow(new Object[] {"es"});
new String[]{UserDictionary.Words.LOCALE});
cursor.addRow(new Object[]{"en"});
cursor.addRow(new Object[]{"es"});
return cursor;
} else {
return null;