change contracts vars declaration

This commit is contained in:
andyk 2020-06-09 14:24:34 +03:00
parent 18e19b4f84
commit 0ac28cd89e

View File

@ -26,10 +26,10 @@ describe("AToken: Transfer", () => {
let wallets: Signer[]; let wallets: Signer[];
let deployer: Signer; let deployer: Signer;
let users: Signer[]; let users: Signer[];
let _aDai = {} as AToken; let _aDai: AToken;
let _dai = {} as MintableErc20; let _dai: MintableErc20;
let _lendingPool = {} as LendingPool; let _lendingPool: LendingPool;
let _lendingPoolCore = {} as LendingPoolCore; let _lendingPoolCore: LendingPoolCore;
const NOT_LENDING_POOL_MSG = const NOT_LENDING_POOL_MSG =
"The caller of this function must be a lending pool"; "The caller of this function must be a lending pool";