diff --git a/__tests__/setup-python.test.ts b/__tests__/setup-python.test.ts index d8a9e3d6..5c10e38c 100644 --- a/__tests__/setup-python.test.ts +++ b/__tests__/setup-python.test.ts @@ -56,7 +56,10 @@ describe('cacheDependencies', () => { await cacheDependencies('pip', '3.12'); - expect(mockedFsPromises.copyFile).toHaveBeenCalledWith(sourcePath, targetPath); + expect(mockedFsPromises.copyFile).toHaveBeenCalledWith( + sourcePath, + targetPath + ); expect(mockedCore.info).toHaveBeenCalledWith( `Copied ${sourcePath} to ${targetPath}` ); @@ -68,7 +71,10 @@ describe('cacheDependencies', () => { await cacheDependencies('pip', '3.12'); - expect(mockedFsPromises.copyFile).toHaveBeenCalledWith(sourcePath, targetPath); + expect(mockedFsPromises.copyFile).toHaveBeenCalledWith( + sourcePath, + targetPath + ); expect(mockedCore.info).toHaveBeenCalledWith( `Overwrote ${sourcePath} to ${targetPath}` );