Skip to content

Commit ac10c41

Browse files
committed
style: correct variable name
1 parent 34ebbfd commit ac10c41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

__tests__/helpers/MongooseConnection.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import '../../src/bootstrap'
33
import mongoose from 'mongoose'
44

55
class MongooseConnection {
6-
async connect (testSuitName: string): Promise<void> {
7-
mongoose.connect(`${process.env.MONGO_URI}-${testSuitName}`, {
6+
async connect (testSuiteName: string): Promise<void> {
7+
mongoose.connect(`${process.env.MONGO_URI}-${testSuiteName}`, {
88
useNewUrlParser: true,
99
useUnifiedTopology: true,
1010
useCreateIndex: true

0 commit comments

Comments
 (0)