Skip to content

Commit 4928ac5

Browse files
committed
fix resolveConnectionString in legacy spec runner
1 parent 38b70dc commit 4928ac5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/spec-runner/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ function resolveConnectionString(configuration, spec, context) {
1010
isShardedEnvironment && !useMultipleMongoses
1111
? `mongodb://${configuration.host}:${configuration.port}/${
1212
configuration.db
13-
}?directConnection=false${authSource ? '&authSource=${authSource}' : ''}`
13+
}?directConnection=false${authSource ? `&authSource=${authSource}` : ''}`
1414
: configuration.url({ username, password, authSource });
1515
return connectionString;
1616
}

0 commit comments

Comments
 (0)