From e9f7068df7c74aa77f8adff2626c8556216299bd Mon Sep 17 00:00:00 2001 From: max Date: Tue, 27 Jun 2023 10:12:31 +0100 Subject: [PATCH] removed boolean casting --- .../test/integration/bootstrap/bootstrapPerpsMarkets.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markets/perps-market/test/integration/bootstrap/bootstrapPerpsMarkets.ts b/markets/perps-market/test/integration/bootstrap/bootstrapPerpsMarkets.ts index db4654399f..3e45f45ccb 100644 --- a/markets/perps-market/test/integration/bootstrap/bootstrapPerpsMarkets.ts +++ b/markets/perps-market/test/integration/bootstrap/bootstrapPerpsMarkets.ts @@ -130,7 +130,7 @@ export const bootstrapPerpsMarkets = ( before('set max market value', async () => { await contracts.PerpsMarket.connect(marketOwner).setMaxMarketValue( marketId, - !!maxMarketValue ? maxMarketValue : bn(10_000_000) + maxMarketValue ? maxMarketValue : bn(10_000_000) ); });