use a-z rather than only a-f in randomSimpleString

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1304826 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-03-24 15:41:01 +00:00
parent 8f53e6eaa7
commit 47a702b44d

View File

@ -204,7 +204,7 @@ public class _TestUtil {
}
final char[] buffer = new char[end];
for (int i = 0; i < end; i++) {
buffer[i] = (char) _TestUtil.nextInt(r, 97, 102);
buffer[i] = (char) _TestUtil.nextInt(r, 'a', 'z');
}
return new String(buffer, 0, end);
}