Skip to content

Commit

Permalink
Fixing expected error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-danield committed Oct 2, 2024
1 parent f4fca4b commit 4a7d02a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/labkey/test/tests/component/EditableGridTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -1564,7 +1564,7 @@ public void testFillCellValidation()

List<String> expectedWarnings = Arrays.asList("22/10 characters", REQ_STR_FIELD_NAME + " is required.", "Invalid integer", "Invalid integer",
"Invalid date, use format yyyy-MM-dd", REQ_DATETIME_FIELD_NAME + " is required.", "Invalid time", REQ_TIME_FIELD_NAME + " is required.",
"Invalid boolean", "Invalid decimal", "Invalid text choice", "Invalid text choice", "Could not find \"bad lookup\"", REQ_LOOKUP_FIELD_NAME + " is required.");
"Invalid boolean", "Invalid decimal", "'wrong text choice' is not a valid choice", "'bad choice' is not a valid choice", "Could not find \"bad lookup\"", REQ_LOOKUP_FIELD_NAME + " is required.");

log("Verify filled down cells have warnings");
for (int i = 0; i < 3; i++)
Expand Down

0 comments on commit 4a7d02a

Please sign in to comment.