Skip to content

Commit 541e939

Browse files
authored
fix: fix csfle imports (#3142)
1 parent 489e05b commit 541e939

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.evergreen/run-bson-ext-test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ fi
2323
# run tests
2424
echo "Running $AUTH tests over $SSL, connecting to $MONGODB_URI"
2525

26-
npm install mongodb-client-encryption@">=2.0.0-beta.3"
26+
npm install mongodb-client-encryption@">=2.0.0-beta.4"
2727
npm install bson-ext
2828

2929
export MONGODB_API_VERSION=${MONGODB_API_VERSION}

.evergreen/run-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@ else
4848
. $DRIVERS_TOOLS/.evergreen/csfle/set-temp-creds.sh
4949
fi
5050

51-
npm install mongodb-client-encryption@">=2.0.0-beta.3"
51+
npm install mongodb-client-encryption@">=2.0.0-beta.4"
5252

5353
AUTH=$AUTH SINGLE_MONGOS_LB_URI=${SINGLE_MONGOS_LB_URI} MULTI_MONGOS_LB_URI=${MULTI_MONGOS_LB_URI} MONGODB_API_VERSION=${MONGODB_API_VERSION} MONGODB_UNIFIED_TOPOLOGY=${UNIFIED} MONGODB_URI=${MONGODB_URI} LOAD_BALANCER=${LOAD_BALANCER} npm run ${TEST_NPM_SCRIPT}

test/integration/client-side-encryption/client_side_encryption.prose.deadlock.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const BSON = require('bson');
44
const { expect } = require('chai');
5-
const { dropCollection } = require('../../integration/shared');
5+
const { dropCollection } = require('../shared');
66
const util = require('util');
77
const fs = require('fs');
88
const path = require('path');

test/integration/client-side-encryption/client_side_encryption.prose.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ describe('Client Side Encryption Prose Tests', metadata, function () {
5151
const keyVaultCollName = 'datakeys';
5252
const keyVaultNamespace = `${keyVaultDbName}.${keyVaultCollName}`;
5353

54-
const shared = require('../../integration/shared');
54+
const shared = require('../shared');
5555
const dropCollection = shared.dropCollection;
5656
const APMEventCollector = shared.APMEventCollector;
5757

0 commit comments

Comments
 (0)