Skip to content

Commit 0b68686

Browse files
committed
cleanup
1 parent bcab0f9 commit 0b68686

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/manual/tls_support.test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ describe('TLS Support', function() {
2020
makeConnectionTest(connectionString, tlsSettings)
2121
);
2222

23-
const queryString = Object.keys(tlsSettings)
24-
.map(key => `${key}=${tlsSettings[key]}`)
25-
.join('&');
26-
console.log({ tlsSettings, url: `${connectionString}?${queryString}` });
2723
it(
2824
'should connect with tls via url options',
29-
makeConnectionTest(`${connectionString}?${queryString}`)
25+
makeConnectionTest(
26+
`${connectionString}?${Object.keys(tlsSettings)
27+
.map(key => `${key}=${tlsSettings[key]}`)
28+
.join('&')}`
29+
)
3030
);
3131
});
3232

0 commit comments

Comments
 (0)