diff options
author | 2014-02-05 01:37:21 -0800 | |
---|---|---|
committer | 2014-02-05 01:37:21 -0800 | |
commit | 81c2a2a1aa95e8db6a38af8b2ae500a237c7928e (patch) | |
tree | 68bab49ae6aef3af267e32c8efbea68f4c50b266 /tests/src/com/android/inputmethod/latin/BinaryDictionaryTests.java | |
parent | 9a7e36acd9bf0be7ddfd1475b29f61b263b76738 (diff) | |
parent | b162911fa4131cf90cd8dbaef325717eec4defa6 (diff) | |
download | latinime-81c2a2a1aa95e8db6a38af8b2ae500a237c7928e.tar.gz latinime-81c2a2a1aa95e8db6a38af8b2ae500a237c7928e.tar.xz latinime-81c2a2a1aa95e8db6a38af8b2ae500a237c7928e.zip |
am b162911f: Merge "[HD04] Make the locale mandatory."
* commit 'b162911fa4131cf90cd8dbaef325717eec4defa6':
[HD04] Make the locale mandatory.
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/BinaryDictionaryTests.java')
-rw-r--r-- | tests/src/com/android/inputmethod/latin/BinaryDictionaryTests.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/com/android/inputmethod/latin/BinaryDictionaryTests.java b/tests/src/com/android/inputmethod/latin/BinaryDictionaryTests.java index bab86e546..e21975db6 100644 --- a/tests/src/com/android/inputmethod/latin/BinaryDictionaryTests.java +++ b/tests/src/com/android/inputmethod/latin/BinaryDictionaryTests.java @@ -69,8 +69,8 @@ public class BinaryDictionaryTests extends AndroidTestCase { file.delete(); file.mkdir(); Map<String, String> attributeMap = new HashMap<String, String>(); - if (BinaryDictionary.createEmptyDictFile(file.getAbsolutePath(), - FormatSpec.VERSION4, attributeMap)) { + if (BinaryDictionary.createEmptyDictFile(file.getAbsolutePath(), FormatSpec.VERSION4, + Locale.ENGLISH, attributeMap)) { return file; } else { throw new IOException("Empty dictionary " + file.getAbsolutePath() |