Skip to content

Commit

Permalink
resolve merge error unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashley Wong committed Jul 18, 2024
1 parent d720499 commit 5aed595
Showing 1 changed file with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
import uk.gov.hmcts.reform.finrem.caseorchestration.model.ccd.UploadOrderCollection;
import uk.gov.hmcts.reform.finrem.caseorchestration.model.ccd.VariationDocumentType;
import uk.gov.hmcts.reform.finrem.caseorchestration.model.ccd.VariationDocumentTypeCollection;
import uk.gov.hmcts.reform.finrem.caseorchestration.model.ccd.wrapper.BulkPrintCoversheetWrapper;
import uk.gov.hmcts.reform.finrem.caseorchestration.model.ccd.wrapper.ConsentOrderWrapper;
import uk.gov.hmcts.reform.finrem.caseorchestration.model.ccd.wrapper.DraftDirectionWrapper;
import uk.gov.hmcts.reform.finrem.caseorchestration.model.ccd.wrapper.GeneralApplicationWrapper;
Expand Down Expand Up @@ -821,31 +822,31 @@ static Stream<Arguments> testGetWarningsOnExistingCase() {
.approvedConsentOrderLetter(DUPLICATED_CASE_DOCUMENT)
.build()),
Arguments.of(FinremCaseData.builder()
.bulkPrintCoverSheetApp(DUPLICATED_CASE_DOCUMENT)
.bulkPrintCoversheetWrapper(BulkPrintCoversheetWrapper.builder().bulkPrintCoverSheetApp(DUPLICATED_CASE_DOCUMENT).build())
.build()),
Arguments.of(FinremCaseData.builder()
.bulkPrintCoverSheetRes(DUPLICATED_CASE_DOCUMENT)
.bulkPrintCoversheetWrapper(BulkPrintCoversheetWrapper.builder().bulkPrintCoverSheetRes(DUPLICATED_CASE_DOCUMENT).build())
.build()),
Arguments.of(FinremCaseData.builder()
.bulkPrintCoverSheetIntv1(DUPLICATED_CASE_DOCUMENT)
.bulkPrintCoversheetWrapper(BulkPrintCoversheetWrapper.builder().bulkPrintCoverSheetIntv1(DUPLICATED_CASE_DOCUMENT).build())
.build()),
Arguments.of(FinremCaseData.builder()
.bulkPrintCoverSheetIntv2(DUPLICATED_CASE_DOCUMENT)
.bulkPrintCoversheetWrapper(BulkPrintCoversheetWrapper.builder().bulkPrintCoverSheetIntv2(DUPLICATED_CASE_DOCUMENT).build())
.build()),
Arguments.of(FinremCaseData.builder()
.bulkPrintCoverSheetIntv3(DUPLICATED_CASE_DOCUMENT)
.bulkPrintCoversheetWrapper(BulkPrintCoversheetWrapper.builder().bulkPrintCoverSheetIntv3(DUPLICATED_CASE_DOCUMENT).build())
.build()),
Arguments.of(FinremCaseData.builder()
.bulkPrintCoverSheetIntv4(DUPLICATED_CASE_DOCUMENT)
.bulkPrintCoversheetWrapper(BulkPrintCoversheetWrapper.builder().bulkPrintCoverSheetIntv4(DUPLICATED_CASE_DOCUMENT).build())
.build()),
Arguments.of(FinremCaseData.builder()
.formA(DUPLICATED_CASE_DOCUMENT)
.build()),
Arguments.of(FinremCaseData.builder()
.bulkPrintCoverSheetAppConfidential(DUPLICATED_CASE_DOCUMENT)
.bulkPrintCoversheetWrapper(BulkPrintCoversheetWrapper.builder().bulkPrintCoverSheetAppConfidential(DUPLICATED_CASE_DOCUMENT).build())
.build()),
Arguments.of(FinremCaseData.builder()
.bulkPrintCoverSheetResConfidential(DUPLICATED_CASE_DOCUMENT)
.bulkPrintCoversheetWrapper(BulkPrintCoversheetWrapper.builder().bulkPrintCoverSheetResConfidential(DUPLICATED_CASE_DOCUMENT).build())
.build()),
Arguments.of(FinremCaseData.builder()
.divorceUploadPetition(DUPLICATED_CASE_DOCUMENT)
Expand Down

0 comments on commit 5aed595

Please sign in to comment.