Skip to content

Commit b99f3a4

Browse files
committedSep 29, 2020
fix(MongoMemoryServer): remove double check
1 parent 65467b0 commit b99f3a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/mongodb-memory-server-core/src/MongoMemoryServer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export default class MongoMemoryServer {
135135
tmpDir: undefined,
136136
};
137137

138-
if (instOpts.port && instOpts.port != data.port) {
138+
if (instOpts.port != data.port) {
139139
log(`starting with port ${data.port}, since ${instOpts.port} was locked:`, data.port);
140140
}
141141

0 commit comments

Comments
 (0)
Please sign in to comment.