diff --git a/tests/escrow/tests/escrow.js b/tests/escrow/tests/escrow.js index 101a58d19..c858731f9 100644 --- a/tests/escrow/tests/escrow.js +++ b/tests/escrow/tests/escrow.js @@ -89,9 +89,6 @@ describe("escrow", () => { tokenProgram: TOKEN_PROGRAM_ID, rent: anchor.web3.SYSVAR_RENT_PUBKEY, }, - instructions: [ - await program.account.escrowAccount.createInstruction(escrowAccount), - ], signers: [escrowAccount], } ); @@ -178,7 +175,6 @@ describe("escrow", () => { tokenProgram: TOKEN_PROGRAM_ID, rent: anchor.web3.SYSVAR_RENT_PUBKEY, }, - instructions: [await program.account.escrowAccount.createInstruction(newEscrow)], signers: [newEscrow], } );