From fcc627e6e1b99cd9536fc7b97b45e61897ee11b6 Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Thu, 31 May 2018 16:12:36 -0700 Subject: fix method rename --- packages/contracts/test/exchange/transactions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages') diff --git a/packages/contracts/test/exchange/transactions.ts b/packages/contracts/test/exchange/transactions.ts index ef7595562..2f3f6b43a 100644 --- a/packages/contracts/test/exchange/transactions.ts +++ b/packages/contracts/test/exchange/transactions.ts @@ -214,7 +214,7 @@ describe('Exchange transactions', () => { ); const isApproved = true; await web3Wrapper.awaitTransactionSuccessAsync( - await exchange.approveSignatureValidator.sendTransactionAsync(whitelist.address, isApproved, { + await exchange.setSignatureValidatorApproval.sendTransactionAsync(whitelist.address, isApproved, { from: takerAddress, }), ); -- cgit