Skip to content

Commit

Permalink
fixed lint issues in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fabcotech committed Sep 21, 2024
1 parent 258832f commit 8f7901f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/Bank.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe('[Bank]', () => {
let code: Cell;
let blockchain: Blockchain;
let user1: null | SandboxContract<TreasuryContract> = null;
let user2: null | SandboxContract<TreasuryContract> = null;
/* let user2: null | SandboxContract<TreasuryContract> = null; */
let bankContract: SandboxContract<Bank>;
const transfers: {
sender: SandboxContract<TreasuryContract>;
Expand Down Expand Up @@ -40,9 +40,9 @@ describe('[Bank]', () => {
});

it('[Bank] user1 transfers to smart contract', async () => {
const balanceUser2Before = await (
/* const balanceUser2Before = await (
user2 as SandboxContract<TreasuryContract>
).getBalance();
).getBalance(); */
await bankContract.sendDeploy(
(user1 as SandboxContract<TreasuryContract>).getSender(),
toNano('0.05')
Expand All @@ -59,9 +59,9 @@ describe('[Bank]', () => {
);
const actualBalance = await bankContract.getBal();
const diff = expectedBalanceContract - actualBalance;
const balanceUser2After = await (
/* const balanceUser2After = await (
user2 as SandboxContract<TreasuryContract>
).getBalance();
).getBalance(); */
/*
The last transfer is a 1B
transfer back to user1
Expand Down

0 comments on commit 8f7901f

Please sign in to comment.