mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-5787 Minor code cleanup
X-SVN-Rev: 22288
This commit is contained in:
parent
ae617cbd3b
commit
f53516fb63
1 changed files with 1 additions and 1 deletions
|
@ -359,7 +359,7 @@ void IntlTestDateTimePatternGeneratorAPI::testAPI(/*char *par*/)
|
|||
UnicodeString randomSkeleton="";
|
||||
int32_t len = rand() % 20;
|
||||
for (int32_t j=0; j<len; ++j ) {
|
||||
randomSkeleton += rand()%80;
|
||||
randomSkeleton += (UChar)(rand()%80);
|
||||
}
|
||||
UnicodeString bestPattern = randDTGen->getBestPattern(randomSkeleton, status);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue