From f09f03e9b665f69a51bf0ca7da65b1fcc462e06c Mon Sep 17 00:00:00 2001 From: "Miquel A. Cabot" Date: Wed, 13 Apr 2022 20:05:20 +0200 Subject: [PATCH] fix lint errors --- test/unit/pools/balancer/Pool.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/unit/pools/balancer/Pool.test.ts b/test/unit/pools/balancer/Pool.test.ts index b8831c23..7eb3d2e0 100644 --- a/test/unit/pools/balancer/Pool.test.ts +++ b/test/unit/pools/balancer/Pool.test.ts @@ -451,11 +451,11 @@ describe('Pool unit test', () => { it('#getSpotPrice- should get the spot price', async () => { assert( (await pool.getSpotPrice(poolAddress, erc20Token, contracts.daiAddress, '0.1')) != - null + null ) assert( (await pool.getSpotPrice(poolAddress, contracts.daiAddress, erc20Token, '0.1')) != - null + null ) }) @@ -510,7 +510,7 @@ describe('Pool unit test', () => { it('#getOPCCollector- should get market fees for each token', async () => { assert( (await pool.getOPCCollector(poolAddress)) === - contracts.opfCommunityFeeCollectorAddress + contracts.opfCommunityFeeCollectorAddress ) }) @@ -1004,7 +1004,7 @@ describe('Pool unit test', () => { it('#getOPCCollector- should get market fees for each token', async () => { assert( (await pool.getOPCCollector(poolAddress)) === - contracts.opfCommunityFeeCollectorAddress + contracts.opfCommunityFeeCollectorAddress ) })