Skip to content

Commit bac621a

Browse files
committed
test: fix unit test
1 parent 7acf218 commit bac621a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

test/integration/crud/crud.prose.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ describe('CRUD Prose Spec Tests', () => {
315315
// Assert that two CommandStartedEvents were observed for the bulkWrite command.
316316
let client: MongoClient;
317317
let maxWriteBatchSize;
318-
let models: ClientBulkWriteModel<Document>[] = [];
318+
let models: ClientBulkWriteModel[] = [];
319319
const commands: CommandStartedEvent[] = [];
320320

321321
beforeEach(async function () {

test/unit/operations/client_bulk_write/results_merger.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ describe('ClientBulkWriteResultsMerger', function () {
4545

4646
it('initializes the result', function () {
4747
expect(resultsMerger.result).to.deep.equal({
48+
acknowledged: true,
4849
insertedCount: 0,
4950
upsertedCount: 0,
5051
matchedCount: 0,

0 commit comments

Comments
 (0)