We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aec8454 commit 34ad51bCopy full SHA for 34ad51b
test/parallel/test-crypto-x509.js
@@ -110,7 +110,8 @@ const der = Buffer.from(
110
assert(x509.publicKey);
111
assert.strictEqual(x509.publicKey.type, 'public');
112
113
- assert.strictEqual(x509.toString().replaceAll('\r\n', '\n'), cert.toString());
+ assert.strictEqual(x509.toString().replaceAll('\r\n', '\n'),
114
+ cert.toString().replaceAll('\r\n', '\n'));
115
assert.strictEqual(x509.toJSON(), x509.toString());
116
117
assert(x509.checkPrivateKey(privateKey));
0 commit comments