Skip to content

Commit ff2d7cf

Browse files
authored
Merge pull request #643 from goldlinker/develop
chore: fix some minor issues in the comments
2 parents 24b52b8 + 1784726 commit ff2d7cf

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tests/hardhat/Comptroller/Diamond/comptrollerTest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@ describe("Comptroller", () => {
11551155
);
11561156
});
11571157

1158-
it("should return silenty if borrowAllowed is already set to desired value", async () => {
1158+
it("should return silently if borrowAllowed is already set to desired value", async () => {
11591159
await comptroller.setIsBorrowAllowed(poolId, vToken.address, true);
11601160
await expect(comptroller.setIsBorrowAllowed(poolId, vToken.address, true)).to.not.emit(
11611161
comptroller,
@@ -1455,7 +1455,7 @@ describe("Comptroller", () => {
14551455
);
14561456
});
14571457

1458-
it("should return silenty if isActive is already set to desired value", async () => {
1458+
it("should return silently if isActive is already set to desired value", async () => {
14591459
await comptroller.setPoolActive(poolId, true);
14601460
await expect(comptroller.setPoolActive(poolId, true)).to.not.emit(comptroller, "BorrowAllowedUpdated");
14611461
});

tests/hardhat/Fork/liquidatorForkTestsTestnet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ if (FORK_TESTNET) {
7171
await oracle.setDirectPrice(USDC, convertToUnit("1", 10));
7272
await liquidator.setMinLiquidatableVAI(convertToUnit("100", 18));
7373
});
74-
it("Liquidate Normaly if VAI debt is lower than minLiquidatableVAI", async () => {
74+
it("Liquidate Normally if VAI debt is lower than minLiquidatableVAI", async () => {
7575
const liquidateUserBalanceBefore = await vUsdc.balanceOf(liquidatorUser);
7676
const protocolBalanceBefore = await usdc.balanceOf(PROTOCOL_SHARE_RESERVE);
7777
await expect(

tests/hardhat/Prime/PrimeLiquidityProvider.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ describe("PrimeLiquidityProvider: tests", () => {
6767
await loadFixture(fixture);
6868
});
6969

70-
describe("Testing all initalized values", () => {
71-
it("Tokens intialized", async () => {
70+
describe("Testing all initialized values", () => {
71+
it("Tokens initialized", async () => {
7272
const tokenABlockOrSecond = await primeLiquidityProvider.lastAccruedBlockOrSecond(tokenA.address);
7373
expect(tokenABlockOrSecond).to.greaterThan(0);
7474

0 commit comments

Comments
 (0)