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 aa7243e commit 99c1590Copy full SHA for 99c1590
test/parallel/test-crypto-x509.js
@@ -110,7 +110,7 @@ const der = Buffer.from(
110
assert(x509.publicKey);
111
assert.strictEqual(x509.publicKey.type, 'public');
112
113
- assert.strictEqual(x509.toString(), cert.toString());
+ assert.strictEqual(x509.toString().replaceAll('\r\n', '\n'), cert.toString());
114
assert.strictEqual(x509.toJSON(), x509.toString());
115
116
assert(x509.checkPrivateKey(privateKey));
0 commit comments