From c1cfe50e5930624a54835a218a0fd3f9cf04876f Mon Sep 17 00:00:00 2001 From: Durran Jordan Date: Tue, 14 May 2024 18:04:59 +0200 Subject: [PATCH] fix: lint --- .../providers/credentialsProvider.test.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/test/unit/client-side-encryption/providers/credentialsProvider.test.ts b/test/unit/client-side-encryption/providers/credentialsProvider.test.ts index 115023e3392..f7d5adae940 100644 --- a/test/unit/client-side-encryption/providers/credentialsProvider.test.ts +++ b/test/unit/client-side-encryption/providers/credentialsProvider.test.ts @@ -3,10 +3,7 @@ import * as http from 'http'; import * as sinon from 'sinon'; // eslint-disable-next-line @typescript-eslint/no-restricted-imports -import { - MongoCryptAzureKMSRequestError, - MongoCryptKMSRequestNetworkTimeoutError -} from '../../../../src/client-side-encryption/errors'; +import { MongoCryptAzureKMSRequestError } from '../../../../src/client-side-encryption/errors'; // eslint-disable-next-line @typescript-eslint/no-restricted-imports import { isEmptyCredentials, @@ -22,8 +19,8 @@ import { import { AWSSDKCredentialProvider } from '../../../../src/cmap/auth/aws_temporary_credentials'; // eslint-disable-next-line @typescript-eslint/no-restricted-imports import * as utils from '../../../../src/utils'; -import * as requirements from '../requirements.helper'; import { MongoNetworkTimeoutError } from '../../../mongodb'; +import * as requirements from '../requirements.helper'; const originalAccessKeyId = process.env.AWS_ACCESS_KEY_ID; const originalSecretAccessKey = process.env.AWS_SECRET_ACCESS_KEY;