diff --git a/src/org/labkey/test/tests/AuditLogTest.java b/src/org/labkey/test/tests/AuditLogTest.java
index 039f5e57e6..0ea179d032 100644
--- a/src/org/labkey/test/tests/AuditLogTest.java
+++ b/src/org/labkey/test/tests/AuditLogTest.java
@@ -650,8 +650,8 @@ public void testDomainPropertyEvents()
log("Validate that the expected rows are there.");
- String eventInitValue = "Name=ChangeMyColumns&AllowDelete=true&AllowUpload=true&AllowExport=true&DiscussionSetting=0" +
- "&EntireListIndexSetting=0&EntireListBodySetting=0&EachItemBodySetting=0&EntireListIndex=false&EachItemIndex=false&FileAttachmentIndex=false";
+ String eventInitValue = "Name=ChangeMyColumns&AllowDelete=true&AllowUpload=true&AllowExport=true&EntireListIndexSetting=0" +
+ "&EntireListBodySetting=0&EachItemBodySetting=0&EntireListIndex=false&EachItemIndex=false&FileAttachmentIndex=false";
AuditLogHelper.DetailedAuditEventRow expectedDomainEvent = new AuditLogHelper.DetailedAuditEventRow(null, LIST_CHECK_LOG, null,
"The domain " + LIST_CHECK_LOG + " was created. The column(s) of domain " + LIST_CHECK_LOG + " were modified.",
null, null, eventInitValue, null);
@@ -780,5 +780,4 @@ private void validateLastDomainAuditEvents(String domainName, String failComment
Assert.assertTrue(failComment + " See log for details.", pass);
}
-
}
diff --git a/src/org/labkey/test/util/AuditLogHelper.java b/src/org/labkey/test/util/AuditLogHelper.java
index d37c0f23e7..c5db9db012 100644
--- a/src/org/labkey/test/util/AuditLogHelper.java
+++ b/src/org/labkey/test/util/AuditLogHelper.java
@@ -56,11 +56,13 @@ public class AuditLogHelper
"Comment"
);
- public static final String SCHEMA_XML_AUDIT = "\n" +
- " \n" +
- "\n";
+ public static final String SCHEMA_XML_AUDIT = """
+
+
+
+ """;
private final WebDriverWrapper _wrapper;