Skip to content

Commit bd8941b

Browse files
committed
style(MongoMemoryReplSet): fix lint
re 5aba25a
1 parent 4d5be4d commit bd8941b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/mongodb-memory-server-core/src/MongoMemoryReplSet.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ export class MongoMemoryReplSet extends EventEmitter implements ManagerAdvanced
663663
const isInMemory = this.servers[0].instanceInfo?.storageEngine === 'ephemeralForTest';
664664

665665
const extraOptions = this._ranCreateAuth
666-
? this.servers[0].instanceInfo?.instance.extraConnectionOptions ?? {}
666+
? (this.servers[0].instanceInfo?.instance.extraConnectionOptions ?? {})
667667
: {};
668668

669669
const con: MongoClient = await MongoClient.connect(uris[0], {

0 commit comments

Comments
 (0)