Skip to content

Commit da062d6

Browse files
committed
test(NODE-7179): fix invalid imports
1 parent a39cf02 commit da062d6

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

test/integration/client-side-encryption/client_side_encryption.prose.26.custom_aws_credential_providers.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { expect } from 'chai';
22

3-
import { AWSSDKCredentialProvider, Binary, MongoClient } from '../../../src';
3+
import { Binary, MongoClient } from '../../../src';
44
import { ClientEncryption } from '../../../src/client-side-encryption/client_encryption';
5+
import { AWSSDKCredentialProvider } from '../../../src/cmap/auth/aws_temporary_credentials';
56
import { getEncryptExtraOptions } from '../../tools/utils';
67

78
const metadata: MongoDBMetadataUI = {

test/integration/client-side-encryption/client_side_encryption.prose.27.text_queries.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import { join } from 'node:path';
44
import { type Binary, type Document, EJSON } from 'bson';
55
import { expect } from 'chai';
66

7-
import { ClientEncryption, type MongoClient, MongoDBCollectionNamespace } from '../../../src';
7+
import { ClientEncryption, type MongoClient } from '../../../src';
8+
import { MongoDBCollectionNamespace } from '../../../src/utils';
89
import { getCSFLEKMSProviders } from '../../csfle-kms-providers';
910

1011
const metadata: MongoDBMetadataUI = {

test/integration/client-side-encryption/driver.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ import {
1010
BSON,
1111
type Collection,
1212
type CommandStartedEvent,
13-
Connection,
1413
type MongoClient,
1514
MongoCryptCreateDataKeyError,
1615
MongoCryptCreateEncryptedCollectionError,
1716
MongoOperationTimeoutError
1817
} from '../../../src';
1918
import { ClientEncryption } from '../../../src/client-side-encryption/client_encryption';
2019
import { StateMachine } from '../../../src/client-side-encryption/state_machine';
20+
import { Connection } from '../../../src/cmap/connection';
2121
import { CSOTTimeoutContext, TimeoutContext } from '../../../src/timeout';
2222
import { resolveTimeoutOptions } from '../../../src/utils';
2323
import { getCSFLEKMSProviders } from '../../csfle-kms-providers';

0 commit comments

Comments
 (0)