Skip to content

Commit

Permalink
style(MongoMemoryReplSet): replace templating string with normal
Browse files Browse the repository at this point in the history
- replace templating string with normal where not needed
  • Loading branch information
hasezoey committed Oct 12, 2020
1 parent a3a911f commit 9add2bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ export class MongoMemoryReplSet extends EventEmitter {
break;
case MongoMemoryReplSetStateEnum.running:
default:
throw new Error(`Already in 'init' or 'running' state. Use debug for more info.`);
throw new Error('Already in "init" or "running" state. Use debug for more info.');
}
this.emit((this._state = MongoMemoryReplSetStateEnum.init)); // this needs to be executed before "setImmediate"
await ensureAsync();
Expand Down

0 comments on commit 9add2bc

Please sign in to comment.