Skip to content

Commit

Permalink
checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashley Wong committed Jan 17, 2025
1 parent 411b8fb commit b86d6a0
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ void shouldReturnErrorWhenNonWordDocumentsAreUploaded(List<UploadAgreedDraftOrde
if (!(agreedDraftOrderRejected || attachmentFormatRejected)) {
assertThat(response.getErrors()).isEmpty();
} else {
String wordDocErrorMessage = "You must upload Microsoft Word documents. " +
"Document names should clearly reflect the party name, the type of hearing and the date of the hearing.";
String wordDocErrorMessage = "You must upload Microsoft Word documents. "
+ "Document names should clearly reflect the party name, the type of hearing and the date of the hearing.";
String rejectedAttachmentMessage = "You must upload a PDF file in the additional attachments.";

if (agreedDraftOrderRejected && attachmentFormatRejected) {
Expand Down Expand Up @@ -231,8 +231,8 @@ void shouldReturnNoErrorsWhenAllDocumentsAreWordFilesForSuggestedDraftOrders(Lis
if (!(suggestedOrderRejected || attachmentFormatRejected)) {
assertThat(response.getErrors()).isEmpty();
} else {
String wordDocErrorMessage = "You must upload Microsoft Word documents. " +
"Document names should clearly reflect the party name, the type of hearing and the date of the hearing.";
String wordDocErrorMessage = "You must upload Microsoft Word documents. "
+ "Document names should clearly reflect the party name, the type of hearing and the date of the hearing.";
String rejectedAttachmentMessage = "You must upload a PDF file in the additional attachments.";

if (suggestedOrderRejected && attachmentFormatRejected) {
Expand Down

0 comments on commit b86d6a0

Please sign in to comment.