From 94a128fb67f07b19bacfe2b8abe084eda7f008c2 Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Thu, 18 Mar 2021 15:54:22 +0300 Subject: [PATCH] fixing tests --- __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 ab963cd6..b1a8935f 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: `toolcache/${this.toolcacheFolderName}/11.0.9/${this.architecture}` + path: path.join('toolcache', this.toolcacheFolderName, '11.0.9', this.architecture); }; }