Skip to content

Commit ffe47a4

Browse files
committed
Issue 54094: escape form field names ending with "\"
1 parent 846f51f commit ffe47a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/org/labkey/test/tests/list/ListTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1054,7 +1054,7 @@ public void listSelfJoinTest()
10541054
final String dummyCol = dummyBase + TRICKY_CHARACTERS;
10551055
final String lookupField = "lookupField" + TRICKY_CHARACTERS;
10561056
final String lookupSchema = "lists";
1057-
final String keyCol = "Key &%<+";
1057+
final String keyCol = "Key &%<+\\"; // Issue 54094: Verify key field ending with "\"
10581058

10591059
log("Issue 6883: test list self join");
10601060

0 commit comments

Comments
 (0)