Skip to content

Commit

Permalink
test: fixup flaky test-crypto-x509 on windows
Browse files Browse the repository at this point in the history
PR-URL: #36966
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
jasnell authored and ruyadorno committed Jan 21, 2021
1 parent aa7243e commit 99c1590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-crypto-x509.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const der = Buffer.from(
assert(x509.publicKey);
assert.strictEqual(x509.publicKey.type, 'public');

assert.strictEqual(x509.toString(), cert.toString());
assert.strictEqual(x509.toString().replaceAll('\r\n', '\n'), cert.toString());
assert.strictEqual(x509.toJSON(), x509.toString());

assert(x509.checkPrivateKey(privateKey));
Expand Down

0 comments on commit 99c1590

Please sign in to comment.