From 201100f52fbf5cf811c1820158a1e7cbe526c115 Mon Sep 17 00:00:00 2001 From: Gil Tene Date: Sat, 2 Nov 2019 20:58:33 -0700 Subject: [PATCH] Touchup test --- __tests__/installer.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__tests__/installer.test.ts b/__tests__/installer.test.ts index 6f320b68..22a30826 100644 --- a/__tests__/installer.test.ts +++ b/__tests__/installer.test.ts @@ -109,10 +109,10 @@ describe('installer tests', () => { expect(fs.existsSync(path.join(JavaDir, 'bin'))).toBe(true); }, 100000); - it('Throws if invalid java packge specified', async () => { + it('Throws if invalid java package specified', async () => { let thrown = false; try { - await installer.getJava('8.0.222', 'x64', '', 'badjdk'); + await installer.getJava('8.0.222', 'x64', '', 'bad jdk'); } catch { thrown = true; }