From 2beb613da7a979f8b953a5b6fb34f47f9461b031 Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Tue, 30 Jul 2019 17:11:09 -0400 Subject: [PATCH] Fix tests (#19) --- __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 b5b3899c..e2aa6536 100644 --- a/__tests__/installer.test.ts +++ b/__tests__/installer.test.ts @@ -24,8 +24,8 @@ const tempDir = path.join( 'temp' ); -process.env['RUNNER_TOOLSDIRECTORY'] = toolDir; -process.env['RUNNER_TEMPDIRECTORY'] = tempDir; +process.env['RUNNER_TOOL_CACHE'] = toolDir; +process.env['RUNNER_TEMP'] = tempDir; import * as installer from '../src/installer'; const IS_WINDOWS = process.platform === 'win32';