mirror of
https://github.com/apache/lucene.git
synced 2025-02-23 02:35:02 +00:00
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:
parent
8f53e6eaa7
commit
47a702b44d
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user