diff --git a/__tests__/cache-restore.test.ts b/__tests__/cache-restore.test.ts index 79e04761..6adf67a6 100644 --- a/__tests__/cache-restore.test.ts +++ b/__tests__/cache-restore.test.ts @@ -115,7 +115,9 @@ virtualenvs.path = "{cache-dir}/virtualenvs" # /Users/patrick/Library/Caches/py ); if (process.env['RUNNER_OS']?.toLowerCase() === 'linux') { - computeKeysSpy.mockImplementation(() => Promise.resolve('Ubuntu-20.4')); + computeKeysSpy.mockImplementation(() => + Promise.resolve('Ubuntu-20.4') + ); Object.defineProperty(utils, 'IS_LINUX', { value: () => { jest.fn().mockImplementation(() => true);