Skip to content

Commit

Permalink
ALL_ILLEGAL_QUERY_KEY_CHARACTERS
Browse files Browse the repository at this point in the history
  • Loading branch information
cnathe committed Feb 12, 2025
1 parent 9762943 commit 6bd00a5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/org/labkey/test/BaseWebDriverTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ public abstract class BaseWebDriverTest extends LabKeySiteWrapper implements Cle

// See QueryKey.ILLEGAL TODO make that array public so it can be used here
public static final String[] ILLEGAL_QUERY_KEY_CHARACTERS = {"$", "/", "&", "}", "~", ",", "."};
public static final String ALL_ILLEGAL_QUERY_KEY_CHARACTERS = StringUtils.join(ILLEGAL_QUERY_KEY_CHARACTERS, "");
// See TSVWriter.shouldQuote. Generally we are not able to use the tab and new line characters when creating field names in the UI, but including here for completeness
public static final String[] TRICKY_IMPORT_FIELD_CHARACTERS = {"\\", "\"", "\\t", ",", "\\n", "\\r"};

Expand Down

0 comments on commit 6bd00a5

Please sign in to comment.