Skip to content

Commit

Permalink
tests(integration): change output orderr
Browse files Browse the repository at this point in the history
  • Loading branch information
r4mmer committed Dec 27, 2024
1 parent 7099194 commit edd8234
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions __tests__/integration/template/transaction/template.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@ describe('Template execution', () => {

expect(tx.outputs).toHaveLength(7);

// HTR
// HTR Change
expect(tx.outputs[0].tokenData).toBe(0);
expect(tx.outputs[0].value).toBe(2n);
expect(tx.outputs[0].value).toBe(7n);

// HTR Change
// HTR
expect(tx.outputs[1].tokenData).toBe(0);
expect(tx.outputs[1].value).toBe(7n);
expect(tx.outputs[1].value).toBe(2n);

// Custom token
expect(tx.outputs[2].tokenData).toBe(1);
Expand Down

0 comments on commit edd8234

Please sign in to comment.