* commit 'bf5033250ce58cc9a5c0b0ac855eba8b05f274e9': Fix build.
This commit is contained in:
commit
b5518a2343
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue