Skip to content

Commit 1784726

Browse files
committed
chore: fix some minor issues in the comments
Signed-off-by: goldlinker <goldlinker@outlook.jp>
1 parent 56f9e5d commit 1784726

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
@@ -1106,7 +1106,7 @@ describe("Comptroller", () => {
11061106
);
11071107
});
11081108

1109-
it("should return silenty if borrowAllowed is already set to desired value", async () => {
1109+
it("should return silently if borrowAllowed is already set to desired value", async () => {
11101110
await comptroller.setIsBorrowAllowed(poolId, vToken.address, true);
11111111
await expect(comptroller.setIsBorrowAllowed(poolId, vToken.address, true)).to.not.emit(
11121112
comptroller,
@@ -1406,7 +1406,7 @@ describe("Comptroller", () => {
14061406
);
14071407
});
14081408

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

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)