From 6644fa17f9d4d55104deca8a8f99c93d6175d48b Mon Sep 17 00:00:00 2001 From: Priyagupta108 Date: Mon, 12 Jan 2026 14:57:50 +0530 Subject: [PATCH] Fix typo --- __tests__/cache-restore.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__tests__/cache-restore.test.ts b/__tests__/cache-restore.test.ts index 0a77297..7474312 100644 --- a/__tests__/cache-restore.test.ts +++ b/__tests__/cache-restore.test.ts @@ -60,7 +60,7 @@ describe('restoreCache', () => { ); }); - it('should inform if cache hit is not occured', async () => { + it('should inform if cache hit is not occurred', async () => { // Arrange hashFilesSpy.mockImplementation(() => Promise.resolve('file_hash')); restoreCacheSpy.mockImplementation(() => Promise.resolve('')); @@ -73,7 +73,7 @@ describe('restoreCache', () => { expect(infoSpy).toHaveBeenCalledWith('Cache is not found'); }); - it('should set output if cache hit is occured', async () => { + it('should set output if cache hit is occurred', async () => { // Arrange hashFilesSpy.mockImplementation(() => Promise.resolve('file_hash')); restoreCacheSpy.mockImplementation(() => Promise.resolve('cache_key'));