Skip to content

Commit ec840aa

Browse files
committed
fix(NODE-3150): added bsonRegExp option
1 parent 3283508 commit ec840aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/unit/bson_regex.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const { BSONRegExp } = require('../../src/index');
55

66
describe('BSONRegExp', () => {
77
describe('bsonRegExp option', () => {
8-
it('should respond with BSONRegExp class with flag passed to db', async function () {
8+
it('should respond with BSONRegExp class with option passed to db', async function () {
99
let client;
1010
try {
1111
// create and connect to client
@@ -24,7 +24,7 @@ describe('BSONRegExp', () => {
2424
}
2525
});
2626

27-
it('should respond with BSONRegExp class with flag passed to collection', async function () {
27+
it('should respond with BSONRegExp class with option passed to collection', async function () {
2828
let client;
2929
try {
3030
// create and connect to client
@@ -43,7 +43,7 @@ describe('BSONRegExp', () => {
4343
}
4444
});
4545

46-
it('should respond with BSONRegExp class with flag passed to operation', async function () {
46+
it('should respond with BSONRegExp class with option passed to operation', async function () {
4747
let client;
4848
try {
4949
// create and connect to client

0 commit comments

Comments
 (0)