diff --git a/__tests__/distributors/microsoft-installer.test.ts b/__tests__/distributors/microsoft-installer.test.ts index 6eb2b58e..6b08d65f 100644 --- a/__tests__/distributors/microsoft-installer.test.ts +++ b/__tests__/distributors/microsoft-installer.test.ts @@ -221,7 +221,9 @@ describe('findPackageForDownload', () => { const result = await distribution['findPackageForDownload']('17.0.10'); - expect(result.signatureUrl).toBe('https://example.test/jdk.tar.gz.custom.sig'); + expect(result.signatureUrl).toBe( + 'https://example.test/jdk.tar.gz.custom.sig' + ); }); }); diff --git a/__tests__/gpg.test.ts b/__tests__/gpg.test.ts index 655077fb..cf72803e 100644 --- a/__tests__/gpg.test.ts +++ b/__tests__/gpg.test.ts @@ -61,7 +61,8 @@ describe('gpg tests', () => { describe('verifyPackageSignature', () => { it('imports bundled key and verifies package', async () => { - const publicKeyContent = '-----BEGIN PGP PUBLIC KEY BLOCK-----\ntest\n-----END PGP PUBLIC KEY BLOCK-----'; + const publicKeyContent = + '-----BEGIN PGP PUBLIC KEY BLOCK-----\ntest\n-----END PGP PUBLIC KEY BLOCK-----'; (tc.downloadTool as jest.Mock).mockResolvedValue('/tmp/jdk.tar.gz.sig'); await gpg.verifyPackageSignature( '/tmp/jdk.tar.gz',