tests: Fix escrow (#767)

This commit is contained in:
Armani Ferrante 2021-09-19 20:38:31 -05:00 committed by GitHub
parent 65db7660ff
commit 2c0dd22eee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -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],
}
);