LUCENE-3496: Replaced generating simple string with realistic unicode strings.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1211993 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Martijn van Groningen 2011-12-08 17:18:19 +00:00
parent be741b1253
commit b3a07fad1f
1 changed files with 1 additions and 2 deletions

View File

@ -672,8 +672,7 @@ public class TestGrouping extends LuceneTestCase {
do {
// B/c of DV based impl we can't see the difference between an empty string and a null value.
// For that reason we don't generate empty string groups.
// randomValue = _TestUtil.randomRealisticUnicodeString(random);
randomValue = _TestUtil.randomSimpleString(random);
randomValue = _TestUtil.randomRealisticUnicodeString(random);
} while ("".equals(randomValue));
groups.add(new BytesRef(randomValue));