Fix build.

Change-Id: If7c76ca5f7030ba2003228ed1877bdb948b4b99d
main
Keisuke Kuroyanagi 2013-09-30 14:21:48 +09:00
parent c18510049a
commit b698e9c1fa
1 changed files with 1 additions and 1 deletions

View File

@ -606,7 +606,7 @@ public class BinaryDictionaryTests extends AndroidTestCase {
binaryDictionary = new BinaryDictionary(dictFile.getAbsolutePath(),
0 /* offset */, dictFile.length(), true /* useFullEditDistance */,
Locale.getDefault(), TEST_LOCALE, true /* isUpdatable */);
while(!binaryDictionary.needsToRunGC()) {
while(!binaryDictionary.needsToRunGC(true /* mindsBlockByGC */)) {
final String word = CodePointUtils.generateWord(random, codePointSet);
words.add(word);
final int unigramProbability = random.nextInt(0xFF);