We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81cc729 commit 29b9c72Copy full SHA for 29b9c72
test/parallel/test-tls-cert-regression.js
@@ -22,6 +22,7 @@
22
'use strict';
23
const common = require('../common');
24
const fixtures = require('../common/fixtures');
25
+const assert = require('assert');
26
27
if (!common.hasCrypto)
28
common.skip('missing crypto');
@@ -43,6 +44,8 @@ while (cert[cert.length - 1 - i] === 0x0a) i++;
43
44
if (i !== 0) cert = cert.slice(0, cert.length - i);
45
46
function test(cert, key, cb) {
47
+ assert.notStrictEqual(cert.at(-1), 0x0a);
48
+ assert.notStrictEqual(key.at(-1), 0x0a);
49
const server = tls.createServer({
50
cert,
51
key
0 commit comments