Skip to content

Commit e421167

Browse files
benjiebrianc
authored andcommittedOct 4, 2020
Add ssl=true into the test
1 parent 9cbea21 commit e421167

File tree

1 file changed

+2
-2
lines changed
  • packages/pg-connection-string/test

1 file changed

+2
-2
lines changed
 

‎packages/pg-connection-string/test/parse.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,8 @@ describe('parse', function () {
279279
subject.ssl.should.eql({})
280280
})
281281

282-
it("configuration parameter sslmode=require doesn't overwrite sslrootcert=/path/to/ca", function () {
283-
var connectionString = 'pg:///?sslrootcert=' + __dirname + '/example.ca&sslmode=require'
282+
it('configuration parameter ssl=true and sslmode=require still work with sslrootcert=/path/to/ca', function () {
283+
var connectionString = 'pg:///?ssl=true&sslrootcert=' + __dirname + '/example.ca&sslmode=require'
284284
var subject = parse(connectionString)
285285
subject.ssl.should.eql({
286286
ca: 'example ca\n',

0 commit comments

Comments
 (0)
Please sign in to comment.