From 916056ed294271a49132889b91e2d81e6364ac17 Mon Sep 17 00:00:00 2001 From: Lum Date: Tue, 12 Aug 2025 12:21:19 -0700 Subject: [PATCH] Re-enable random attachment field names --- src/org/labkey/test/tests/FileAttachmentColumnTest.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/org/labkey/test/tests/FileAttachmentColumnTest.java b/src/org/labkey/test/tests/FileAttachmentColumnTest.java index 83ce728aeb..ca935d5f8c 100644 --- a/src/org/labkey/test/tests/FileAttachmentColumnTest.java +++ b/src/org/labkey/test/tests/FileAttachmentColumnTest.java @@ -93,9 +93,7 @@ public class FileAttachmentColumnTest extends BaseWebDriverTest private final String RESULT_FILE_COL = "resultFile"; private final String OTHER_RESULT_FILE_COL = "otherResultFile"; private final String STUDY_DATASET_NAME = "ogreSpiteLevels"; - // Issue 53505: enable use of randomFieldName when issue is fixed - //private static final FieldInfo LIST_ATTACHMENT_FIELD = new FieldInfo(TestDataGenerator.randomFieldName("File / Attachment"), ColumnType.Attachment); - private static final FieldInfo LIST_ATTACHMENT_FIELD = new FieldInfo("File / Attachment", ColumnType.Attachment); + private static final FieldInfo LIST_ATTACHMENT_FIELD = new FieldInfo(TestDataGenerator.randomFieldName("File / Attachment"), ColumnType.Attachment); @Override protected void doCleanup(boolean afterTest) throws TestTimeoutException