From 77d1ed257c3b1f2ae5fdb516f15d6fe42465ec0b Mon Sep 17 00:00:00 2001 From: Noah Khamliche Date: Tue, 31 Aug 2021 13:19:42 -0400 Subject: [PATCH] removed unsued bal variable, and removed .only modifier on blockchain tests --- contracts/zero-ex/test/features/fund_recovery_tests.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/contracts/zero-ex/test/features/fund_recovery_tests.ts b/contracts/zero-ex/test/features/fund_recovery_tests.ts index b3ab387cd4..b5671cfbd6 100644 --- a/contracts/zero-ex/test/features/fund_recovery_tests.ts +++ b/contracts/zero-ex/test/features/fund_recovery_tests.ts @@ -9,7 +9,7 @@ import { FundRecoveryFeatureContract } from '../generated-wrappers/fund_recovery import { abis } from '../utils/abis'; import { fullMigrateAsync } from '../utils/migration'; -blockchainTests.only('FundRecovery', async env => { +blockchainTests('FundRecovery', async env => { let owner: string; let zeroEx: IZeroExContract; let token: DummyERC20TokenContract; @@ -82,7 +82,6 @@ blockchainTests.only('FundRecovery', async env => { value: amountOut, }), ); - const bal = await env.web3Wrapper.getBalanceInWeiAsync(recipientAddress); await zeroEx .transferTrappedTokensTo(ETH_TOKEN_ADDRESS, amountOut.minus(1), recipientAddress) .awaitTransactionSuccessAsync({ from: owner });