From 9d55e0973ebdc4f2f9c69ca876aae744f030740c Mon Sep 17 00:00:00 2001 From: Andy Mina Date: Mon, 14 Jun 2021 10:26:30 -0400 Subject: [PATCH] fix(NODE-3150): added bsonRegExp option --- test/unit/bson_regex.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/unit/bson_regex.test.js b/test/unit/bson_regex.test.js index 20e9fc07c3..e9c802d17e 100644 --- a/test/unit/bson_regex.test.js +++ b/test/unit/bson_regex.test.js @@ -5,7 +5,7 @@ const { BSONRegExp } = require('../../src/index'); describe('BSONRegExp', () => { describe('bsonRegExp option', () => { - it('should respond with BSONRegExp class with flag passed to db', async function () { + it('should respond with BSONRegExp class with option passed to db', async function () { let client; try { // create and connect to client @@ -24,7 +24,7 @@ describe('BSONRegExp', () => { } }); - it('should respond with BSONRegExp class with flag passed to collection', async function () { + it('should respond with BSONRegExp class with option passed to collection', async function () { let client; try { // create and connect to client @@ -43,7 +43,7 @@ describe('BSONRegExp', () => { } }); - it('should respond with BSONRegExp class with flag passed to operation', async function () { + it('should respond with BSONRegExp class with option passed to operation', async function () { let client; try { // create and connect to client