Skip to content

Commit

Permalink
Fix indentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
danfuzz committed Jan 30, 2025
1 parent bf39d12 commit 1130791
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/net-util/tests/CertUtil.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ describe('checkPrivateKey()', () => {
'-----BEGIN RSA PRIVATE KEY-----\n' +
'ABCDEFG+/abcdefg1234567890=\n' +
'-----END RSA PRIVATE KEY-----\n';
const SOME_EC_KEY =
'-----BEGIN EC PRIVATE KEY-----\n' +
'ABCDEFG+/abcdefg1234567890=\n' +
'-----END EC PRIVATE KEY-----\n';
const SOME_EC_KEY =
'-----BEGIN EC PRIVATE KEY-----\n' +
'ABCDEFG+/abcdefg1234567890=\n' +
'-----END EC PRIVATE KEY-----\n';

test('throws given a non-string', () => {
expect(() => CertUtil.checkPrivateKey(12345)).toThrow();
Expand Down

0 comments on commit 1130791

Please sign in to comment.