Skip to content

Commit

Permalink
[PRDP-239] feat: updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexyey committed Nov 29, 2023
1 parent de2d9ab commit 51ac196
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,9 @@ private Receipt buildReceiptWithStatus(ReceiptStatusType receiptStatusType, int
.eventId("biz-event-id")
.status(receiptStatusType)
.numRetry(numRetry)
.generated_at(ORIGINAL_GENERATED_AT)
.inserted_at(0L)
.notified_at(0L)
.generatedAt(ORIGINAL_GENERATED_AT)
.insertedAt(0L)
.notifiedAt(0L)
.build();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -761,9 +761,9 @@ private Receipt buildReceiptForVerify(boolean debtorAlreadyCreated, boolean paye
.mdAttach(buildMetadata(debtorAlreadyCreated))
.mdAttachPayer(buildMetadata(payerAlreadyCreated))
.numRetry(0)
.generated_at(1L)
.inserted_at(1L)
.notified_at(1L)
.generatedAt(1L)
.insertedAt(1L)
.notifiedAt(1L)
.build();
}

Expand Down Expand Up @@ -861,9 +861,9 @@ private Receipt getReceipt(EventData eventData, ReceiptMetadata metadataD, Recei
.mdAttachPayer(metadataP)
.status(ReceiptStatusType.INSERTED)
.numRetry(0)
.generated_at(1L)
.inserted_at(1L)
.notified_at(1L)
.generatedAt(1L)
.insertedAt(1L)
.notifiedAt(1L)
.build();
}

Expand Down

0 comments on commit 51ac196

Please sign in to comment.