From f882236246dbb97c35a7da20f8bf60b396585856 Mon Sep 17 00:00:00 2001 From: panticmilos Date: Mon, 18 Jul 2022 16:02:18 +0200 Subject: [PATCH] Run lint --- __tests__/cache-restore.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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);