Skip to content

Commit

Permalink
fix: uniswap tests
Browse files Browse the repository at this point in the history
Signed-off-by: GopherJ <[email protected]>
  • Loading branch information
GopherJ committed Jul 11, 2023
1 parent 05dfd5c commit f29a407
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions test/_uniswapv3_pool_operation.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -746,13 +746,11 @@ describe("Uniswap V3 NFT supply, withdraw, setCollateral, liquidation and transf
expect(liquidatorBalance).to.eq(0);

// try to start auction
await waitForTx(
await pool
await expect(
pool
.connect(liquidator.signer)
.startAuction(borrower.address, nftPositionManager.address, 1)
);

expect(await nUniswapV3.isAuctioned(1)).to.be.true;
).to.be.reverted;
});

it("liquidation failed if underlying erc20 was not active [ @skip-on-coverage ]", async () => {
Expand Down

0 comments on commit f29a407

Please sign in to comment.