mirror of https://github.com/apache/lucene.git
SOLR-5920: Fix forbidden-api-check failure
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1582951 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
145dcab3ca
commit
8a328c9318
|
@ -44,6 +44,7 @@ import java.util.HashMap;
|
|||
import java.util.List;
|
||||
import java.util.Collection;
|
||||
import java.util.Collections;
|
||||
import java.util.Locale;
|
||||
import java.util.Map;
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -966,7 +967,7 @@ public class CursorPagingTest extends SolrTestCaseJ4 {
|
|||
}
|
||||
|
||||
private static String dateWithRandomSecondOn2010_10_31_at_10_31() {
|
||||
return String.format("2010-10-31T10:31:%02d.000Z",
|
||||
return String.format(Locale.ROOT, "2010-10-31T10:31:%02d.000Z",
|
||||
TestUtil.nextInt(random(), 0, 59));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue