Skip to content

Commit be96efe

Browse files
committed
Don't introduce '\' to random strings (yet)
1 parent 244498e commit be96efe

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
@@ -74,7 +74,7 @@ public class TestDataGenerator
7474
private static final char WIDE_PLACEHOLDER = '\u03A0'; // 'Π' - Wide character can't be picked from the string with 'charAt'
7575
private static final String NON_LATIN_STRING = "\u0438\uC548\u306F"; // "и안は"
7676
// chose a Character random from this String
77-
public static final String CHARSET_STRING = "ABCDEFG01234abcdefvxyz~!@#$%^&*()-+=_{}[]|:;\"\\',.<>" + NON_LATIN_STRING + WIDE_PLACEHOLDER;
77+
public static final String CHARSET_STRING = "ABCDEFG01234abcdefvxyz~!@#$%^&*()-+=_{}[]|:;\"',.<>" + NON_LATIN_STRING + WIDE_PLACEHOLDER;
7878
public static final String ALPHANUMERIC_STRING = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvxyz";
7979
public static final String DOMAIN_SPECIAL_STRING = "+- _.:&()/";
8080
public static final String ILLEGAL_DOMAIN_NAME_CHARSET = "<>[]{};,`\"~!@#$%^*=|?\\";

0 commit comments

Comments
 (0)