am b5518a23: am bf503325: am b698e9c1: Fix build.

* commit 'b5518a2343b30f4e398bdcbf9f15853a10fc6ccc':
  Fix build.
main
Keisuke Kuroyanagi 2013-10-03 15:37:53 -07:00 committed by Android Git Automerger
commit 5a9f255a32
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);