From 346f113b4e8b6cca943f8c6ca726ef8ea65ae0cd Mon Sep 17 00:00:00 2001 From: Aparna Jyothi Date: Fri, 11 Jul 2025 16:56:15 +0530 Subject: [PATCH] npm run format --- __tests__/setup-python.test.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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}` );