Skip to content

Commit 5898983

Browse files
committed
fix: fix import
1 parent 646c6c5 commit 5898983

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

test/integration/tests/turboPCVDeposit.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,8 @@ import { TestEndtoEndCoordinator } from '../setup';
88
import { expectApprox, getImpersonatedSigner, resetFork } from '@test/helpers';
99
import { abi as PCVDepositAbi } from '../../../artifacts/contracts/pcv/compound/ERC20CompoundPCVDeposit.sol/ERC20CompoundPCVDeposit.json';
1010
import { forceEth } from '../setup/utils';
11-
const { Contract } = ethers;
1211

13-
const toBN = ethers.BigNumber.from;
14-
15-
describe.only('Turbo PCV deposit', function () {
12+
describe('Turbo PCV deposit', function () {
1613
let contracts: NamedContracts;
1714
let contractAddresses: NamedAddresses;
1815
let deployAddress: string;
@@ -50,7 +47,7 @@ describe.only('Turbo PCV deposit', function () {
5047
doLogging && console.log(`Environment loaded.`);
5148

5249
const signer = (await ethers.getSigners())[0];
53-
turboFusePCVDeposit = new ethers.Contract(contractAddresses.turboFusePCVDepositAddress, PCVDepositAbi, signer);
50+
turboFusePCVDeposit = new ethers.Contract(contractAddresses.turboFusePCVDeposit, PCVDepositAbi, signer);
5451

5552
const laasMultisigSigner = await getImpersonatedSigner(laasMultisigAddress);
5653

0 commit comments

Comments
 (0)