Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fmt
  • Loading branch information
timja committed Feb 27, 2025
commit f7a22910397b3048ed75b692774b17b34a56b2e2
4 changes: 2 additions & 2 deletions test/parallel/test-native-certs.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ describe('use-system-ca', function() {
await fetch(`https://localhost:${server.address().port}/hello-world`);
} catch (err) {
if (common.isWindows) {
assert.equal(err.cause.code, "UNABLE_TO_GET_ISSUER_CERT")
assert.equal(err.cause.code, "UNABLE_TO_GET_ISSUER_CERT");
} else {
assert.equal(err.cause.code, "UNABLE_TO_VERIFY_LEAF_SIGNATURE")
assert.equal(err.cause.code, "UNABLE_TO_VERIFY_LEAF_SIGNATURE");
}
}
});
Expand Down