chore: fix lint
This commit is contained in:
parent
9b05e9d21e
commit
4242eee739
|
@ -982,10 +982,7 @@ test('transaction failure', async () => {
|
|||
},
|
||||
},
|
||||
]);
|
||||
await connection.requestAirdrop(
|
||||
account.publicKey,
|
||||
minimumAmount + 100010,
|
||||
);
|
||||
await connection.requestAirdrop(account.publicKey, minimumAmount + 100010);
|
||||
expect(await connection.getBalance(account.publicKey)).toBe(
|
||||
minimumAmount + 100010,
|
||||
);
|
||||
|
@ -1034,7 +1031,7 @@ test('transaction failure', async () => {
|
|||
await sleep(1000);
|
||||
expect(await connection.confirmTransaction(signature)).toEqual(false);
|
||||
|
||||
const expectedErr = { InstructionError: [ 0, 'AccountBorrowFailed' ] };
|
||||
const expectedErr = {InstructionError: [0, 'AccountBorrowFailed']};
|
||||
mockRpc.push([
|
||||
url,
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue