diff --git a/test/BalancerContractHandler.ts b/test/BalancerContractHandler.ts index 9333413c..25225c90 100644 --- a/test/BalancerContractHandler.ts +++ b/test/BalancerContractHandler.ts @@ -58,7 +58,7 @@ export class BalancerContractHandler { public async SdeployContracts(minter: string) { let estGas console.log('Trying to deploy SPool') - console.log("Bytecode size:"+this.poolBytecode.length) + console.log('Bytecode size:' + this.poolBytecode.length) estGas = await this.pool .deploy({ data: this.poolBytecode, @@ -83,7 +83,7 @@ export class BalancerContractHandler { .then(function (contract) { return contract.options.address }) - console.log("Pool deployed:"+this.poolAddress) + console.log('Pool deployed:' + this.poolAddress) estGas = await this.factory .deploy({ data: this.factoryBytecode, diff --git a/test/unit/balancer/Balancer.test.ts b/test/unit/balancer/Balancer.test.ts index f17010db..70b46b5e 100644 --- a/test/unit/balancer/Balancer.test.ts +++ b/test/unit/balancer/Balancer.test.ts @@ -89,7 +89,7 @@ describe('Balancer flow', () => { ) await OceanPoolContracts.getAccounts() owner = OceanPoolContracts.accounts[0] - + await OceanPoolContracts.deployContracts(owner) OceanPoolFactoryAddress = OceanPoolContracts.factoryAddress assert(OceanPoolFactoryAddress !== null) @@ -104,13 +104,12 @@ describe('Balancer flow', () => { ) await SContracts.getAccounts() owner = SContracts.accounts[0] - + await SContracts.SdeployContracts(owner) const SFactoryAddress = SContracts.factoryAddress assert(SFactoryAddress !== null) }) - it('should initialize OceanPool class', async () => { Pool = new OceanPool( web3,