From 1c4384b1d0eff51b81a6d45900bcc0061b737839 Mon Sep 17 00:00:00 2001 From: Christopher Li Date: Tue, 2 Jan 2024 17:27:22 -0500 Subject: [PATCH] lint --- .../vulcan/__tests__/handlers/order-remove-handler.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indexer/services/vulcan/__tests__/handlers/order-remove-handler.test.ts b/indexer/services/vulcan/__tests__/handlers/order-remove-handler.test.ts index eeb733500b..b0b00075f2 100644 --- a/indexer/services/vulcan/__tests__/handlers/order-remove-handler.test.ts +++ b/indexer/services/vulcan/__tests__/handlers/order-remove-handler.test.ts @@ -28,7 +28,6 @@ import { testMocks, apiTranslations, TimeInForce, - BlockFromDatabase, } from '@dydxprotocol-indexer/postgres'; import { OpenOrdersCache, @@ -1706,6 +1705,7 @@ describe('OrderRemoveHandler', () => { const removedRedisOrder: RedisOrder = redisTestConstants.defaultRedisOrder; const expectedOrderUuid: string = redisTestConstants.defaultOrderUuid; + // eslint-disable-next-line @typescript-eslint/require-await const tableSpy = jest.spyOn(BlockTable, 'getLatest').mockImplementation(async () => { throw new Error(); });