From d3901f97be27b912b22e2afe66f614103c717062 Mon Sep 17 00:00:00 2001 From: Kevin Gosse Date: Wed, 22 Jun 2022 16:06:57 +0200 Subject: [PATCH] Test with x64 since x86 is not available for linux --- __tests__/installer.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/installer.test.ts b/__tests__/installer.test.ts index 8371812..d8da8f0 100644 --- a/__tests__/installer.test.ts +++ b/__tests__/installer.test.ts @@ -87,7 +87,7 @@ describe('installer tests', () => { }, 600000); //This needs some time to download on "slower" internet connections it('Acquires architecture-specific version of dotnet if no matching version is installed', async () => { - await getDotnet('3.1', 'x86'); + await getDotnet('3.1', 'x64'); var directory = fs .readdirSync(path.join(toolDir, 'sdk')) .filter(fn => fn.startsWith('3.1.'));