Skip to content

Commit

Permalink
style: correct variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
matheuspiment committed Oct 9, 2019
1 parent 34ebbfd commit ac10c41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __tests__/helpers/MongooseConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import '../../src/bootstrap'
import mongoose from 'mongoose'

class MongooseConnection {
async connect (testSuitName: string): Promise<void> {
mongoose.connect(`${process.env.MONGO_URI}-${testSuitName}`, {
async connect (testSuiteName: string): Promise<void> {
mongoose.connect(`${process.env.MONGO_URI}-${testSuiteName}`, {
useNewUrlParser: true,
useUnifiedTopology: true,
useCreateIndex: true
Expand Down

0 comments on commit ac10c41

Please sign in to comment.