From d87fc52c90640aae1fdac3a024801a04d2933656 Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Thu, 18 Mar 2021 16:14:15 +0300 Subject: [PATCH] fix spelling --- __tests__/distributors/base-installer.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/distributors/base-installer.test.ts b/__tests__/distributors/base-installer.test.ts index b1a8935f..6eb3300e 100644 --- a/__tests__/distributors/base-installer.test.ts +++ b/__tests__/distributors/base-installer.test.ts @@ -20,7 +20,7 @@ class EmptyJavaBase extends JavaBase { protected async downloadTool(javaRelease: JavaDownloadRelease): Promise { return { version: '11.0.9', - path: path.join('toolcache', this.toolcacheFolderName, '11.0.9', this.architecture); + path: path.join('toolcache', this.toolcacheFolderName, '11.0.9', this.architecture) }; }