From ba3103fb66e634a6f8cff45298c2275b6e0174b3 Mon Sep 17 00:00:00 2001 From: "kennsippell@gmail.com" Date: Mon, 12 Feb 2024 11:56:42 +0700 Subject: [PATCH] Eslint --- test/lib/retry-logic.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/lib/retry-logic.spec.ts b/test/lib/retry-logic.spec.ts index 2143fc51..5325afa2 100644 --- a/test/lib/retry-logic.spec.ts +++ b/test/lib/retry-logic.spec.ts @@ -7,6 +7,7 @@ import { ChtApi } from '../../src/lib/cht-api'; import { mockSimpleContactType } from '../mocks'; import chaiAsPromised from 'chai-as-promised'; +import Place from '../../src/services/place'; Chai.use(chaiAsPromised); const { expect } = Chai; @@ -89,7 +90,7 @@ describe('lib/retry-logic', () => { }); } - it ('throws after persistent conflict', async () => { + it('throws after persistent conflict', async () => { const testFunction = sinon.stub().rejects(UpdateConflictScenario?.axiosError); const execute = RetryLogic.retryOnUpdateConflict(testFunction); await expect(execute).to.eventually.be.rejectedWith('persisted');