Skip to content

Commit b712e52

Browse files
Fix ListTest (#2462)
Co-authored-by: labkey-susanh <susanh@labkey.com>
1 parent 45f1975 commit b712e52

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -801,13 +801,13 @@ public void testCustomViews()
801801
/* Issue 23487: add regression coverage for batch insert into list with multiple errors
802802
*/
803803
@Test
804-
public void testBatchInsertErrors() throws IOException, CommandException
804+
public void testBatchInsertErrors()
805805
{
806806
// create the list for this case
807807
String multiErrorListName = "multiErrorBatchList";
808808
String[] expectedErrors = new String[]{
809809
getConversionErrorMessage("green", "ShouldInsertCorrectly", Boolean.class),
810-
getConversionErrorMessage("five", "Id", Integer.class) + "; Missing value for required property: Id"
810+
getConversionErrorMessage("five", "Id", Integer.class)
811811
};
812812

813813
createList(multiErrorListName, BatchListColumns, BatchListData);

src/org/labkey/test/util/AuditLogHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ public boolean validateDetailAuditLog(DetailedAuditEventRow expectedAuditDetail,
249249
if (StringUtils.isEmpty(expectedValue) && actualValue == null)
250250
continue;
251251

252-
if (!expectedValue.equals(actualValue))
252+
if (!expectedValue.equalsIgnoreCase(actualValue))
253253
{
254254
pass = false;
255255
TestLogger.log(prop + " is not as expected. Expected: " + expectedValue + ", Actual: " + actualValue);

0 commit comments

Comments
 (0)