Skip to content

Commit

Permalink
Update createTransactionDto test to accept workflowId and workstepId
Browse files Browse the repository at this point in the history
  • Loading branch information
biscuitdey committed Jul 22, 2024
1 parent c352bdc commit d273675
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ describe('CreateTransactionDto', () => {
// Arrange
const dto = {
nonce: 123,
workflowInstanceId: '123',
workstepInstanceId: '123',
workflowId: '123',
workstepId: '123',
fromSubjectAccountId: '123',
toSubjectAccountId: '123',
payload: '123',
Expand All @@ -33,8 +33,8 @@ describe('CreateTransactionDto', () => {
const dto = {
id: '123',
nonce: 123,
workflowInstanceId: '123',
workstepInstanceId: '123',
workflowId: '123',
workstepId: '123',
fromSubjectAccountId: '123',
toSubjectAccountId: '123',
payload: '123',
Expand Down

0 comments on commit d273675

Please sign in to comment.