aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/exchange_wrapper_test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/exchange_wrapper_test.ts b/test/exchange_wrapper_test.ts
index 36ad34fab..0c8182c73 100644
--- a/test/exchange_wrapper_test.ts
+++ b/test/exchange_wrapper_test.ts
@@ -104,8 +104,8 @@ describe('ExchangeWrapper', () => {
const addressBySymbol: {[symbol: string]: string} = {};
let networkId: number;
const setBalance = async (toAddress: string,
- amountInBaseUnits: BigNumber.BigNumber|number,
- tokenAddress: string) => {
+ amountInBaseUnits: BigNumber.BigNumber|number,
+ tokenAddress: string) => {
const amount = _.isNumber(amountInBaseUnits) ? new BigNumber(amountInBaseUnits) : amountInBaseUnits;
await zeroEx.token.transferAsync(tokenAddress, userAddresses[0], toAddress, amount);
};