Skip to content

Commit 92039b3

Browse files
committed
exclude some characters
1 parent 56c4ce8 commit 92039b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/org/labkey/test/util/TestDataGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ public static List<String> randomTextChoice(int size)
504504
Set<String> textChoices = new LinkedHashSet<>();
505505
while (textChoices.size() < size)
506506
{
507-
String generated = randomString(randomInt(1, 25)).trim();
507+
String generated = randomString(randomInt(1, 25), "%<>").trim();
508508
if (!generated.isEmpty())
509509
{
510510
textChoices.add(generated);

0 commit comments

Comments
 (0)