Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/hardhat/Comptroller/Diamond/comptrollerTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1106,7 +1106,7 @@ describe("Comptroller", () => {
);
});

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

it("should return silenty if isActive is already set to desired value", async () => {
it("should return silently if isActive is already set to desired value", async () => {
await comptroller.setPoolActive(poolId, true);
await expect(comptroller.setPoolActive(poolId, true)).to.not.emit(comptroller, "BorrowAllowedUpdated");
});
Expand Down
2 changes: 1 addition & 1 deletion tests/hardhat/Fork/liquidatorForkTestsTestnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ if (FORK_TESTNET) {
await oracle.setDirectPrice(USDC, convertToUnit("1", 10));
await liquidator.setMinLiquidatableVAI(convertToUnit("100", 18));
});
it("Liquidate Normaly if VAI debt is lower than minLiquidatableVAI", async () => {
it("Liquidate Normally if VAI debt is lower than minLiquidatableVAI", async () => {
const liquidateUserBalanceBefore = await vUsdc.balanceOf(liquidatorUser);
const protocolBalanceBefore = await usdc.balanceOf(PROTOCOL_SHARE_RESERVE);
await expect(
Expand Down
4 changes: 2 additions & 2 deletions tests/hardhat/Prime/PrimeLiquidityProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ describe("PrimeLiquidityProvider: tests", () => {
await loadFixture(fixture);
});

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

Expand Down