Skip to content

Commit

Permalink
Merge pull request tonkeeper#15 from Skydev0h/skydev/fix-bouncing-tests
Browse files Browse the repository at this point in the history
Fixed failing tests after adding back throw (bounce) for sint after sig
  • Loading branch information
oleganza authored Feb 20, 2024
2 parents 55a383d + 4cd9181 commit 53cf00c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/wallet-v5-internal.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ describe('Wallet V5 sign auth internal', () => {
(receipt.transactions[1].description as TransactionDescriptionGeneric)
.computePhase as TransactionComputeVm
).exitCode
).toEqual(0);
).toEqual(33);

expect(receipt.transactions).not.toHaveTransaction({
from: walletV5.address,
Expand Down Expand Up @@ -642,7 +642,7 @@ describe('Wallet V5 sign auth internal', () => {
(receipt.transactions[1].description as TransactionDescriptionGeneric)
.computePhase as TransactionComputeVm
).exitCode
).toEqual(0);
).toEqual(36);

expect(receipt.transactions).not.toHaveTransaction({
from: walletV5.address,
Expand Down Expand Up @@ -687,7 +687,7 @@ describe('Wallet V5 sign auth internal', () => {
(receipt.transactions[1].description as TransactionDescriptionGeneric)
.computePhase as TransactionComputeVm
).exitCode
).toEqual(0);
).toEqual(34);

expect(receipt.transactions).not.toHaveTransaction({
from: walletV5.address,
Expand Down Expand Up @@ -1166,7 +1166,7 @@ describe('Wallet V5 sign auth internal', () => {
(receipt2.transactions[1].description as TransactionDescriptionGeneric)
.computePhase as TransactionComputeVm
).exitCode
).toEqual(0);
).toEqual(33);

expect(receipt2.transactions).not.toHaveTransaction({
from: walletV5.address,
Expand Down

0 comments on commit 53cf00c

Please sign in to comment.