From 06bcb9d3c7523eae8e8697f20c4d440391060586 Mon Sep 17 00:00:00 2001 From: Wes Morgan Date: Wed, 21 Sep 2022 08:29:29 -0600 Subject: [PATCH] Fix microsoft installer test on non-macOS platforms --- __tests__/distributors/microsoft-installer.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/distributors/microsoft-installer.test.ts b/__tests__/distributors/microsoft-installer.test.ts index eca3ccfa..e051d034 100644 --- a/__tests__/distributors/microsoft-installer.test.ts +++ b/__tests__/distributors/microsoft-installer.test.ts @@ -78,7 +78,7 @@ describe('findPackageForDownload', () => { checkLatest: false }); - distribution['getPlatformOption'] = () => { + distro['getPlatformOption'] = () => { return { archive: 'tar.gz', os: 'macos' }; };