silly: use the right random var

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1086628 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2011-03-29 15:33:11 +00:00
parent 1c5398f0e0
commit 5da11b6bff
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ public class TestFSTs extends LuceneTestCase {
}
final char[] buffer = new char[end];
for (int i = 0; i < end; i++) {
buffer[i] = (char) _TestUtil.nextInt(random, 97, 102);
buffer[i] = (char) _TestUtil.nextInt(r, 97, 102);
}
return new String(buffer, 0, end);
}